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