remove debug print statements

This commit is contained in:
2025-04-03 15:44:54 -05:00
parent 7cce8f6d8e
commit 0d944992fb
7 changed files with 1 additions and 20 deletions

View File

@@ -16,15 +16,11 @@ namespace Archimedes {
typedef GuiModule* create_t(void*, App*);
GuiModule(void* h, App* a) : Module(h, a) {
//wm = new WindowModule(nullptr, a);
deps["WindowModule"] = new WindowModule(nullptr, a);
}
virtual ~GuiModule() {}
virtual void onLoad() = 0;
virtual void run() = 0;
protected:
//WindowModule* wm;
};
}