Files
Archimedes/modules/examples/DependsOnPrint/src/DependsOnPrint.h
2025-04-12 20:22:46 -05:00

17 lines
310 B
C++

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