ImguiEmbed

This commit is contained in:
2025-03-29 23:23:49 -05:00
parent e087ac70d1
commit 0c67caf827
6 changed files with 123 additions and 12 deletions

View File

@@ -0,0 +1,30 @@
#define ENTRYPOINT
#include "Archimedes.h"
#include "modules/GUImodules/TestImgui/src/TestImgui.h"
class ImguiEmbed : public Archimedes::App {
private:
void printHelp() {};
public:
ImguiEmbed() {
Archimedes::Module* m = (Archimedes::Module*) new TestImgui(nullptr, Get());
load(m, {});
};
~ImguiEmbed() {};
void handleArgs(const int& argc, char* argv[]) {};
void run();
//void stopModule(std::list<Archimedes::Module*>::iterator);
//void startModule(std::string);
};
Archimedes::App* MakeApp() { return new ImguiEmbed(); }