mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2026-02-04 14:49:20 +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;
|
|
};
|