예제 #1
0
        static void Main(string[] args)
        {
            SimCorpMobile simCorp = new SimCorpMobile();

            Console.WriteLine(simCorp.GetDescription());
            Console.ReadKey();
        }
예제 #2
0
        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();
        }