static void Main(string[] args) { SimCorpMobile simCorp = new SimCorpMobile(); Console.WriteLine(simCorp.GetDescription()); Console.ReadKey(); }
static void Main(string[] args) { SimCorpMobile simCorp = new SimCorpMobile(new ConsoleOutput()); ///Console.WriteLine(simCorp.GetDescription()); simCorp.SetPlaybackDevice(); Track sound = new Track(); simCorp.Play(sound); Console.ReadKey(); }