Files
Archimedes/modules/Archimedes-Modules/DependsOnPrintStatic/DependsOnPrintStatic.h
2025-05-12 16:28:27 -05:00

17 lines
335 B
C++

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