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,18 @@
#include "DependsOnPrintStatic.h"
#include "modules/examples/Modules/Print/src/Print.h"
DependsOnPrintStatic::DependsOnPrintStatic(void* h, Archimedes::App* a) : Module(h, a) {
name = "DependsOnPrintStatic";
deps["Print"] = new Print(nullptr, a);
}
DependsOnPrintStatic::~DependsOnPrintStatic() {
std::cout << "DependsOnPrintStatic Destroyed!\n";
}
void DependsOnPrintStatic::run() {
std::cout << "DependsOnPrintStatic lib loaded and run!\n";
app->stopModule(name);
}