예제 #1
0
        static void Main()
        {
            ChotaikoChart       TestChart       = new ChotaikoChart(new System.IO.StreamReader(@"../../TestChart.ctc"));
            ChotaikoGameContext TestGameContext = new ChotaikoGameContext(TestChart);

            ChotaikoGlobalContext.SetGameContext(TestGameContext);
            // The 'using' idiom guarantees proper resource cleanup.
            // We request 30 UpdateFrame events per second, and unlimited
            // RenderFrame events (as fast as the computer can handle).
            using (Chotaiko game = new Chotaiko())
            {
                game.KeyDown += ChotaikoOnKeyDown;
                game.Run(30.0);
            }
        }