コード例 #1
0
ファイル: RpgGame.cs プロジェクト: abowen/MonoGameOpenGL
        public RpgGame(GameWindow window, ContentManager contentManager) : base(window, contentManager)
        {
            FontGraphics.LoadContent(contentManager);
            RpgGraphics.LoadContent(contentManager);

            var startScreen = new StartScreen();

            NextLevel(startScreen);
        }
コード例 #2
0
ファイル: SurfingGame.cs プロジェクト: abowen/MonoGameOpenGL
        public SurfingGame(GameWindow window, ContentManager contentManager)
            : base(window, contentManager)
        {
            FontGraphics.LoadContent(contentManager);
            CommonGraphics.LoadContent(contentManager);
            SurfingGraphics.LoadContent(contentManager);

            var level = new SurfLevel();

            NextLevel(level);
        }
コード例 #3
0
        public TopDown(GameWindow window, ContentManager contentManager)
            : base(window, contentManager)
        {
            FontGraphics.LoadContent(contentManager);
            SpaceGraphics.LoadSpaceContent(contentManager);
            SpaceSounds.LoadSpaceSounds(contentManager);

            var level = new StartScreen();

            NextLevel(level);
        }