예제 #1
0
        static void Main(string[] args)
        {
            //create graphics object to pass to graphics class for any visuals
            Graphics graphObj = new Graphics();

            WMPLib.WindowsMediaPlayer wplayer = new WMPLib.WindowsMediaPlayer();

            wplayer.URL = @"C:\Users\RickB\Documents\Kennesaw\CS2350 Obj Orient Prog\CS2350_FinalProject_Team4\CS2350_FinalProject_Team4\Resources\(Disc 2) 03 - Let's Get It On (2003 Remaster Album Version).wav";
            wplayer.controls.play();



            //set console size and basic attributes
            Graphics.ConsoleBasics();
            Graphics.ConsoleIntro();

            //send to opening sequence animation
            Graphics.HeartsMoving();


            //call client object
            Client currentClient = new Client();


            //send client object to compatability class
            Compatability compare = new Compatability(currentClient.CurrentClient);
        }   //close main
        static void Main(string[] args)
        {
            Graphics.CenterConsole();

            //create graphics object to pass to graphics class for any visuals
            Graphics graphObj = new Graphics();

            //set console size and basic attributes
            Graphics.ConsoleBasics();
            Graphics.TeamSplash();

            //call intro music
            Sound.IntroMusic();

            //call text for initial splash page
            Graphics.TeamFont();

            //send to opening sequence animation
            Graphics.ConsoleIntro();
            Graphics.HeartsMoving();

            //call client object
            Client currentClient = new Client();

            //send client object to compatability class
            Compatability compare = new Compatability(currentClient.CurrentClient);

            //set console size and basic attributes
            Graphics.ConsoleIntro();
            Console.Clear();
            Graphics.FinalScreen();
        }