mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-16 17:51:47 +01:00
13 lines
146 B
C++
13 lines
146 B
C++
#pragma once
|
|
#include "Player.h"
|
|
|
|
class GameManager
|
|
{
|
|
public:
|
|
float balance{ 0.0f };
|
|
float fuel{ 0.0f };
|
|
|
|
private:
|
|
GameManager() = default;
|
|
};
|