25 lines
366 B
C++
25 lines
366 B
C++
#include "Archimedes.h"
|
|
|
|
class TestImgui : public Archimedes::Module {
|
|
|
|
public:
|
|
TestImgui(Archimedes::App*, void*);
|
|
|
|
TestImgui() { name = "TestImgui"; }
|
|
|
|
~TestImgui();
|
|
|
|
void onLoad();
|
|
|
|
void run();
|
|
|
|
|
|
private:
|
|
bool demo = true;
|
|
};
|
|
|
|
#ifdef TESTIMGUI_DYNAMIC
|
|
typedef TestImgui mtype;
|
|
#include "endModule.h"
|
|
#endif
|