//private const int MINIMIZE = 6; //private const int RESTORE = 9; static void Main(string[] args) { Console.SetWindowSize(Console.LargestWindowWidth, Console.LargestWindowHeight); ShowWindow(ThisConsole, MAXIMIZE); Dicer.GetDice(); GameCreationMenus.StartMenu(); }
public override void CreateGame() { var slot = GamePlayMenus.SaveGameMenu("load"); if (slot == 7) { GameCreationMenus.StartMenu(); } var path = PathFinder(slot); LoadGame(path); InitializeBoard(); var play = new PlayerTurn(); play.GamePlay(); }