fix examples

This commit is contained in:
2025-04-12 20:22:46 -05:00
parent 1d4087e842
commit dea35c2a5e
8 changed files with 10 additions and 10 deletions

View File

@@ -1,11 +1,11 @@
#include "DependsOnPrintStatic.h"
#include "modules/examples/Modules/Print/src/Print.h"
#include "modules/examples/Print/src/Print.h"
DependsOnPrintStatic::DependsOnPrintStatic(void* h, Archimedes::App* a) : Module(h, a) {
DependsOnPrintStatic::DependsOnPrintStatic(Archimedes::App* a, void* h) : Module(a, h) {
name = "DependsOnPrintStatic";
deps["Print"] = new Print(nullptr, a);
deps["Print"] = new Print(a, h);
}
DependsOnPrintStatic::~DependsOnPrintStatic() {

View File

@@ -3,7 +3,7 @@
class DependsOnPrintStatic : public Archimedes::Module {
public:
DependsOnPrintStatic(void*, Archimedes::App*);
DependsOnPrintStatic(Archimedes::App*, void*);
~DependsOnPrintStatic();
void run();
void onLoad() {}