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

17 lines
310 B
C++

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