Kinda can put buildings
This commit is contained in:
14
game/game_manager.cs
Normal file
14
game/game_manager.cs
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user