Deux Ex Machina

This commit is contained in:
Bram Verhulst
2024-06-09 23:23:55 +02:00
parent 5f1dcd5788
commit caabb12838
17 changed files with 151 additions and 77 deletions

View File

@@ -0,0 +1,19 @@
#pragma once
#include "../../Screen.h"
#include "Gui/GuiText.h"
class GameOverScreen final : public Screen {
public:
GameOverScreen(const std::string& filePath, Vector2f pos, Vector2f size, TextureManager* manager);
virtual ~GameOverScreen() override;
virtual void Draw() const override;
virtual void Update(float elapsedSecs) override;
void MarkDirty();
void SellAll();
private:
Texture* m_SkullTexture{ nullptr };
};