Beispiel #1
0
        public void Start()
        {
            do
            {
                Console.Clear();
                Program.SpCur(1);
                Console.Write("Введите имя:");
                _Player.Name = Console.ReadLine();
            } while (_Player.Name == "");
            _Player.Money = 100;
            _Player.PrintInfo();
            Timer time = new Timer(Time, null, 0, 1000);

            Update();
        }