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,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(self);
}