restructure modules

This commit is contained in:
2025-03-31 10:14:18 -05:00
parent 7841f04a35
commit d6f769d2dd
13 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#include "Archimedes.h"
class DependsOnPrint : public Archimedes::Module {
public:
DependsOnPrint(void*, Archimedes::App*);
~DependsOnPrint();
void run();
void onLoad() {}
};
#ifndef DEPENDSONPRINT_STATIC
#define MODULE_TYPE DependsOnPrint
#include "endModule.h"
#endif