示例#1
0
        public override async void RunGame()
        {
            using (var splashScreen = new SplashScreen(this, 3))
            {
                splashScreen.LoadResource(Content);
                await this.Play(splashScreen);
            }

            using (var level = new Level_0(this))
            {
                level.LoadResource(Content);
                await this.Play(level);
            }
        }