Layers and Events

This commit is contained in:
2025-04-05 22:37:24 -05:00
parent 5c798f8cb7
commit fbfa13a742
7 changed files with 184 additions and 2 deletions

View File

@@ -0,0 +1,30 @@
#ifndef GUIMODULE
#define GUIMODULE
#endif
#include "Archimedes.h"
#include "utils/Window/Window.h"
class ImguiModule : public Archimedes::GuiModule {
public:
ImguiModule(void*, Archimedes::App*);
~ImguiModule();
void onLoad();
void run();
private:
std::list<Archimedes::Renderer::renderCmd*>::iterator rcmd;
Archimedes::Window* window;
};
#ifdef TESTIMGUI_DYNAMIC
#define MODULE_TYPE ImguiModule
#include "endModule.h"
#endif