public RpgGame(GameWindow window, ContentManager contentManager) : base(window, contentManager) { FontGraphics.LoadContent(contentManager); RpgGraphics.LoadContent(contentManager); var startScreen = new StartScreen(); NextLevel(startScreen); }
public SurfingGame(GameWindow window, ContentManager contentManager) : base(window, contentManager) { FontGraphics.LoadContent(contentManager); CommonGraphics.LoadContent(contentManager); SurfingGraphics.LoadContent(contentManager); var level = new SurfLevel(); NextLevel(level); }
public TopDown(GameWindow window, ContentManager contentManager) : base(window, contentManager) { FontGraphics.LoadContent(contentManager); SpaceGraphics.LoadSpaceContent(contentManager); SpaceSounds.LoadSpaceSounds(contentManager); var level = new StartScreen(); NextLevel(level); }