19 lines
281 B
C++
19 lines
281 B
C++
//
|
|
// Whirling.hpp
|
|
// Whirling
|
|
//
|
|
// Created by Bob Polis at 2021-09-05
|
|
// Copyright (c) 2021 SwiftCoder. All rights reserved.
|
|
//
|
|
|
|
#ifndef _Whirling_H_
|
|
#define _Whirling_H_
|
|
|
|
class ScreensaverPlugin;
|
|
|
|
extern "C" {
|
|
ScreensaverPlugin* create_instance();
|
|
}
|
|
|
|
#endif // _Whirling_H_
|