Files
Archimedes/modules/Print/src/Print.h
2025-03-17 12:41:37 -05:00

18 lines
287 B
C++

#include "../../../include/Archimedes.h"
class Print : public Module {
public:
Print(void*, App&);
~Print();
void run();
void onLoad() {}
};
extern "C" {
Module* create(void* handle, App& app) {
return new Print(handle, app);
}
}