Ejemplo n.º 1
0
            public void Cpl() // Gunners words during the fire command (third in order)
            {
                Console.WriteLine("Identified Tank, range 2000 meters");
                Console.ReadLine();
                TC babers = new TC();

                babers.fire();
                Console.WriteLine("ON THE WAY!");
                Console.ReadLine();
                WeaponSystem BB = new WeaponSystem();

                BB.shooting();
                Console.WriteLine("Target");
                Console.ReadLine();
                babers.TC2();
                Console.WriteLine("Identified");
                Console.ReadLine();
                loader cavazos = new loader();

                cavazos.LCpl();
                babers.fire();
                Console.WriteLine("ON THE WAY!");
                Console.ReadLine();
                BB.shooting();
                Console.WriteLine("Target");
                Console.ReadLine();
                babers.TC3();
                Console.WriteLine("That's All Folks come again for story time!!!");
                Console.ReadLine();
            }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            HomeComing veni = new HomeComing();

            veni.Icame();
            Console.WriteLine("Choose :1 Go on leave to find a house.\n Choose 2: Go to the field because the Tank is your home!");
            int choice = int.Parse(Console.ReadLine());

            if (choice == 1)
            {
                Console.WriteLine("Wrong choice buddie, the tank will provide you with all that you need!");
                System.Environment.Exit(0);
            }
            else
            {
                Console.WriteLine("Good choice, it is time to meet your tank crew and prep your tank. You leave for gunnery in two days welcome back chump!\n");
            }
            Console.WriteLine("\n");

            TankCrew crew = new TankCrew();

            crew.crewintro();

            HomeComing vidi = new HomeComing();

            vidi.Isaw();

            WeaponSystem testfire = new WeaponSystem();

            testfire.loading();
            testfire.shooting();

            Coax littlemg = new Coax();

            littlemg.shooting();

            Fifty bigmg = new Fifty();

            bigmg.shooting();

            Console.WriteLine("Test fire complete.");
            Console.WriteLine("\n");


            HomeComing vici = new HomeComing();

            vici.Iconcured();

            TankCrew.TC commander = new TankCrew.TC();
            commander.SSgt();

            TankCrew.loader loader = new TankCrew.loader();
            loader.LCpl();

            TankCrew.Gunner gunner = new TankCrew.Gunner();
            gunner.Cpl();
        }