Beispiel #1
0
        //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();
        }
Beispiel #2
0
        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();
        }