示例#1
0
        public void UserInterface()
        {
            Console.Write(new string('\n', 10));
            Console.WriteLine(" 1. START GAME | 2. END GAME | 3. END GAME | 4. END GAME.");
            ConsoleKeyInfo cki;

            cki = Console.ReadKey(true);
            switch (cki.Key)
            {
            case ConsoleKey.D1:
            {
                Console.Clear();
                StoryLine.MainStoryLine();
                Console.Clear();
                break;
            }

            case ConsoleKey.D2:
            case ConsoleKey.D3:
            case ConsoleKey.D4:
            {
                Console.Write("\n" + "\n" + "good idea, but you should have looked");
                Console.Clear();
                Console.ReadLine();
                break;
            }
            }
        }
示例#2
0
        public static void Main()
        {
            Ship          ship      = new Ship();
            MainCharacter character = new MainCharacter();
            SpaceFlight   space     = new SpaceFlight();
            UserInterface ui        = new UserInterface();
            TradingPost   random    = new TradingPost();

            ui.UserInterface1();
            StoryLine.MainStoryLine();
            ui.WhereToGo();



            Console.WriteLine();
            Travel.WarpSpeed();
            //Planets.PlanetGenerate();
            //userInterface.UserInterface();
            //MainCharacter.CharacterRandom();
            //StoryLine.MainStoryLine();



            /*
             *
             *
             *
             * Trade, and Game Concepts[] <-- pass in array
             *
             *
             *
             *
             *
             */



            /*
             * Game Ending
             *
             *
             *
             */
        }