Files
Archimedes/modules/DependsOnPrintStatic/src/DependsOnPrintStatic.h
2025-03-30 12:21:45 -05:00

22 lines
423 B
C++

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