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,6 +1,6 @@
#include "DependsOnPrint.h"
DependsOnPrint::DependsOnPrint(void* h, Archimedes::App* a) : Module(h, a) {
DependsOnPrint::DependsOnPrint(Archimedes::App* a, void* h) : Module(a, h) {
name = "DependsOnPrint";
deps["Print"] = "/home/nathan/Projects/Archimedes/result-1/bin/Print";

View File

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