GUI: prepare for handling render backend deaths

This commit is contained in:
tildearrow 2023-07-01 18:10:58 -05:00
parent c83948209a
commit ecff10b407
2 changed files with 5 additions and 0 deletions

View File

@ -1266,6 +1266,7 @@ class FurnaceGUIRender {
virtual void initGUI(SDL_Window* win);
virtual void quitGUI();
virtual bool quit();
virtual bool isDead();
virtual ~FurnaceGUIRender();
};

View File

@ -99,5 +99,9 @@ bool FurnaceGUIRender::quit() {
void FurnaceGUIRender::quitGUI() {
}
bool FurnaceGUIRender::isDead() {
return false;
}
FurnaceGUIRender::~FurnaceGUIRender() {
}