19 lines
261 B
C++
19 lines
261 B
C++
//
|
|
// Grid.hpp
|
|
// Grid
|
|
//
|
|
// Created by Bob Polis at 2022-09-21
|
|
// Copyright (c) 2022 SwiftCoder. All rights reserved.
|
|
//
|
|
|
|
#ifndef _Grid_H_
|
|
#define _Grid_H_
|
|
|
|
class ScreensaverPlugin;
|
|
|
|
extern "C" {
|
|
ScreensaverPlugin* create_instance();
|
|
}
|
|
|
|
#endif // _Grid_H_
|