reintegration complete

This commit is contained in:
2025-05-12 16:28:27 -05:00
parent 2350592424
commit b4309ab4e9
33 changed files with 1384 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,15 @@
#include "Archimedes.h"
class Print : public Archimedes::Module {
public:
Print(Archimedes::App*, void*);
Print() { name = "Print"; }
~Print();
void run();
};
#ifdef PRINT_DYNAMIC
typedef Print mtype;
#include "endModule.h"
#endif