Kinda can put buildings

This commit is contained in:
Victor Turgeon
2023-06-11 09:10:21 -04:00
parent eaee26025c
commit e7d5747a7c
6 changed files with 197 additions and 76 deletions

14
game/game_manager.cs Normal file
View File

@@ -0,0 +1,14 @@
public static class game_manager
{
public enum State
{
Play,
Building,
Pause,
}
public static State CurrentState { get; set; } = State.Play;
public static int Kash { get; set; } = 0;
public static int Approval { get; set; } = 0;
public static int Megaton { get; set; } = 0;
}