コード例 #1
0
ファイル: Game1.cs プロジェクト: thismarvin/flappy-network
        protected override void LoadContent()
        {
            spriteBatch = new SpriteBatch(GraphicsDevice);

            Assets.LoadContent(Content);

            Playfield.Initialize();

            // Start Game FullScreen.
            //ScreenManager.StartFullScreen(graphics);
        }
コード例 #2
0
ファイル: GameRoot.cs プロジェクト: thismarvin/monoengine
        protected override void LoadContent()
        {
            spriteBatch = new SpriteBatch(GraphicsDevice);

            Assets.LoadContent(Content);

            SoundManager.Initialize();
            Playfield.Initialize();
            HUD.Initialize();

#if !__IOS__ && !__ANDROID__
            if (startFullscreen)
            {
                ScreenManager.StartFullScreen(graphics);
            }
#endif
        }