18 lines
287 B
C++
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);
|
|
}
|
|
}
|