summaryrefslogtreecommitdiff
path: root/src/port/SpaghettiGui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/port/SpaghettiGui.h')
-rw-r--r--src/port/SpaghettiGui.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/port/SpaghettiGui.h b/src/port/SpaghettiGui.h
index a4381ea1c..5b7578f55 100644
--- a/src/port/SpaghettiGui.h
+++ b/src/port/SpaghettiGui.h
@@ -2,16 +2,17 @@
#include <libultraship.h>
#include "ship/window/gui/Gui.h"
+#include "fast/Fast3dGui.h"
#include "ship/window/Window.h"
class Gui; // <-- forward declare
//class Window;
namespace Ship {
- class SpaghettiGui : public Gui {
+ class SpaghettiGui : public Fast::Fast3dGui {
public:
- SpaghettiGui() : Gui() {}
- SpaghettiGui(std::vector<std::shared_ptr<GuiWindow>> guiWindows) : Gui(guiWindows) {}
+ SpaghettiGui() : Fast::Fast3dGui() {}
+ SpaghettiGui(std::vector<std::shared_ptr<GuiWindow>> guiWindows) : Fast::Fast3dGui(guiWindows) {}
protected:
virtual void DrawMenu() override;