remove GuiModule

This commit is contained in:
2025-04-10 12:27:31 -05:00
parent 10b8dd34ca
commit fc1fc6c35b
17 changed files with 33 additions and 42 deletions

View File

@@ -5,9 +5,14 @@
#include <GLFW/glfw3.h>
ImguiModule::ImguiModule(Archimedes::App* a, void* h = nullptr) : Archimedes::GuiModule(a, h) {
#include "modules/WindowModule/src/WindowModule.h"
ImguiModule::ImguiModule(Archimedes::App* a, void* h = nullptr) : Archimedes::Module(a, h) {
name = "ImguiModule";
WindowModule* wm = new WindowModule(a);
deps[wm->getName()] = wm;
}
ImguiModule::~ImguiModule() {