public Bamboozled() { graphics = new GraphicsDeviceManager(this); Content.RootDirectory = "Content"; global_content = Content; graphics.PreferredBackBufferHeight = 576; graphics.PreferredBackBufferWidth = 1024; screenManager = new ScreenManager(this); Components.Add(screenManager); // Activate the first screen. screenManager.AddScreen(new BackgroundScreen(), null); screenManager.AddScreen(new MainMenuScreen(), null); }
/// <summary> /// Activates the loading screen. /// </summary> public static void Load(ScreenManager screenManager, bool loadingIsSlow, PlayerIndex? controllingPlayer, params GameScreen[] screensToLoad) { // Tell all the current screens to transC:\Users\Clay\Desktop\Merge with Gaetane\Team7\Bamboozled\Bamboozled\Gameplay.csition off. foreach (GameScreen screen in screenManager.GetScreens()) screen.ExitScreen(); // Create and activate the loading screen. LoadingScreen loadingScreen = new LoadingScreen(screenManager, loadingIsSlow, screensToLoad); screenManager.AddScreen(loadingScreen, controllingPlayer); }