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(); }