Update Screen system

Added FuelScreen (Working buttons)
Added SellScreen (Nothing working)
This commit is contained in:
Bram Verhulst
2024-04-04 00:07:45 +02:00
parent df9e2f0b64
commit eb4c7b4d76
20 changed files with 759 additions and 45 deletions

12
Game/GameManager.h Normal file
View File

@@ -0,0 +1,12 @@
#pragma once
#include "Player.h"
class GameManager
{
public:
float balance{ 0.0f };
float fuel{ 0.0f };
private:
GameManager() = default;
};