Files
Archimedes/modules/examples/DependsOnPrintStatic/src/DependsOnPrintStatic.h
2025-04-10 12:27:31 -05:00

17 lines
340 B
C++

#include "Archimedes.h"
class DependsOnPrintStatic : public Archimedes::Module {
public:
DependsOnPrintStatic(void*, Archimedes::App*);
~DependsOnPrintStatic();
void run();
void onLoad() {}
};
#ifdef DEPENDSONPRINTSTATIC_DYNAMIC
#define MODULE_TYPE DependsOnPrintStatic
#include "endModule.h"
#endif