17 lines
305 B
C++
17 lines
305 B
C++
#include "Archimedes.h"
|
|
|
|
class DependsOnPrint : public Archimedes::Module {
|
|
|
|
public:
|
|
DependsOnPrint(Archimedes::App*, void*);
|
|
~DependsOnPrint();
|
|
void run();
|
|
void onLoad() {}
|
|
|
|
};
|
|
|
|
#ifdef DEPENDSONPRINT_DYNAMIC
|
|
typedef DependsOnPrint mtype;
|
|
#include "endModule.h"
|
|
#endif
|