prepare for the GUI!

This commit is contained in:
tildearrow 2021-12-11 02:10:09 -05:00
parent d4fb9bac83
commit e8ac2947ab
18 changed files with 19753 additions and 12 deletions

9
src/gui/gui.cpp Normal file
View file

@ -0,0 +1,9 @@
#include "gui.h"
void FurnaceGUI::bindEngine(DivEngine* eng) {
e=eng;
}
FurnaceGUI::FurnaceGUI():
e(NULL) {
}

9
src/gui/gui.h Normal file
View file

@ -0,0 +1,9 @@
#include "../engine/engine.h"
class FurnaceGUI {
DivEngine* e;
public:
void bindEngine(DivEngine* eng);
FurnaceGUI();
};