예제 #1
0
파일: Program.cs 프로젝트: tolegenovbt/PP2
        static void Main(string[] args)
        {
            //TestFood();
            //TestWall();

            //string name = Console.ReadLine();
            GameState gameState = new GameState();

            gameState.StartGame();
        }
예제 #2
0
        static void Main(string[] args)
        {
            //TestFood();
            //TestWall();


            GameState gameState = new GameState();

            gameState.StartGame();
        }
예제 #3
0
        static void Main(string[] args)
        {
            //RecordTable r = new RecordTable();
            ////XmlSerializer x = new XmlSerializer(typeof(RecordTable));
            //BinaryFormatter bin = new BinaryFormatter();
            //using(FileStream fs = new FileStream("RecordsFile.bin", FileMode.Create, FileAccess.Write)) {
            //    bin.Serialize(fs, r);
            //}
            GameState game = new GameState();

            game.DrawScene(); // Выведение в консоль всех игровых объектов
            game.StartGame(); // Запуск игры
        }