still deciding on structure

This commit is contained in:
2025-03-10 01:10:21 -05:00
parent 270c93490f
commit 6f706e7b69
7 changed files with 102 additions and 47 deletions

17
src/GuiModule.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef GUIMODULE_H
#define GUIMODULE_H
#include "Module.h"
class GuiModule : Module {
public:
typedef GuiModule* create_t();
typedef void destroy_t(GuiModule*);
virtual ~GuiModule() {}
virtual void run() = 0;
};
#endif