remove GuiModule

This commit is contained in:
2025-04-10 12:27:31 -05:00
parent 10b8dd34ca
commit fc1fc6c35b
17 changed files with 33 additions and 42 deletions

View File

@@ -0,0 +1,15 @@
#include "Print.h"
Print::Print(void* h, Archimedes::App* a) : Archimedes::Module(h, a) {
name = "Print";
}
Print::~Print() {
std::cout << "Print Destroyed!\n";
}
void Print::run() {
std::cout << "Print lib loaded and run!\n";
app->stopModule(name);
}

View File

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