This commit is contained in:
Bram Verhulst
2024-06-09 22:03:29 +02:00
parent d7389411f5
commit 5f1dcd5788
76 changed files with 1532 additions and 385 deletions

View File

@@ -3,7 +3,7 @@
#include "Gui/GuiText.h"
#include "Gui/Screen.h"
class MainScreen: public Screen {
class MainScreen final : public Screen {
public:
explicit MainScreen(TextureManager* manager);
virtual ~MainScreen() override;
@@ -16,6 +16,7 @@ public:
void SetDepth(const std::string& text) const;
void SetScore(const std::string& text) const;
void SetMoney(const std::string& text) const;
private:
GuiMeter* m_FuelMeter;
@@ -23,5 +24,10 @@ private:
GuiText* m_DepthText;
GuiText* m_ScoreText;
GuiText* m_MoneyText;
GuiButton* m_InvButton;
GuiButton* m_OptionsButton;
GuiButton* m_HelpButton;
};