This commit is contained in:
2025-04-17 14:58:22 -05:00
parent f36f6ae125
commit a1e9401aaa
23 changed files with 157 additions and 44 deletions

View File

@@ -5,7 +5,9 @@ Print::Print(Archimedes::App* a, void* h) : Archimedes::Module(a, h) {
}
Print::~Print() {
std::cout << "Print Destroyed!\n";
if(app) {
std::cout << "Print Destroyed!\n";
}
}
void Print::run() {

View File

@@ -4,6 +4,7 @@ class Print : public Archimedes::Module {
public:
Print(Archimedes::App*, void*);
Print() { name = "Print"; }
~Print();
void run();
};