19 lines
275 B
C++
19 lines
275 B
C++
|
//
|
||
|
// FadingRects.hpp
|
||
|
// screensaver
|
||
|
//
|
||
|
// Created by Bob Polis at 2020-10-26
|
||
|
// Copyright (c) 2020 SwiftCoder. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef _Huey_H_
|
||
|
#define _Huey_H_
|
||
|
|
||
|
class ScreensaverPlugin;
|
||
|
|
||
|
extern "C" {
|
||
|
ScreensaverPlugin* create_instance();
|
||
|
}
|
||
|
|
||
|
#endif // _Huey_H_
|