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 "DependsOnPrint.h"
DependsOnPrint::DependsOnPrint(void* h, Archimedes::App* a) : Module(h, a) {
name = "DependsOnPrint";
deps["Print"] = "/home/nathan/Projects/Archimedes/result-1/bin/Print";
}
DependsOnPrint::~DependsOnPrint() {
std::cout << "DependsOnPrint Destroyed!\n";
}
void DependsOnPrint::run() {
std::cout << "DependsOnPrint lib loaded and run!\n";
app->stopModule(self);
}