Example #1
0
 public ActionScreen(Game game, SpriteBatch spriteBatch)
     : base(game, spriteBatch)
 {
     game.IsMouseVisible = false;
     particleManager = new ParticleManager();
     powerUpManager = new PowerUpManager();
     bloom = new BloomComponent(game);
     bloom.Initialize();
     Components.Add(bloom);
     paused = false;
     gameOver = false;
 }