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,20 @@
#include "Archimedes.h"
class TestMenu : public Module {
public:
TestMenu(void*, App&);
~TestMenu();
void run();
void onLoad() {}
private:
int choice;
int num = 5;
};
extern "C" {
Module* create(void* handle, App& app) {
return new TestMenu(handle, app);
}
}