Exemplo n.º 1
0
 public GameOverScene(SceneManager sceneMgr, Video video, BBCGame game)
     : base(sceneMgr)
 {
     this.video = video;
     this.game = game;
     this.sceneMgr = sceneMgr;
 }
Exemplo n.º 2
0
        public GameplayScene(SceneManager sceneMgr)
            : base(sceneMgr)
        {
            _pauseAlpha = 0;
            this.sceneMgr = sceneMgr;
            TransitionOnTime = TimeSpan.FromSeconds(1.5);
            TransitionOffTime = TimeSpan.FromSeconds(0);

            if (Content == null)
                Content = new ContentManager(SceneManager.Game.Services, "Content");

            size_window = new Vector2(1280, 720);
            mu = new Mutex();

            g = new BBCGame(size_window, Content);
        }
Exemplo n.º 3
0
 public Invulnerability(Vector2 size_window, BBCGame bbcgame)
     : base(size_window, bbcgame)
 {
 }
Exemplo n.º 4
0
 public MediKit(Vector2 size_window, BBCGame bbcgame)
     : base(size_window, bbcgame)
 {
 }
Exemplo n.º 5
0
 public Bonus(Vector2 size_window, BBCGame bbcgame)
     : base(size_window)
 {
     this.bbcgame = bbcgame;
 }
Exemplo n.º 6
0
 public GameJam(Vector2 size_window, BBCGame bbcgame)
     : base(size_window, bbcgame)
 {
 }
Exemplo n.º 7
0
 public SpeedDown(Vector2 size_window, BBCGame bbcgame)
     : base(size_window, bbcgame)
 {
 }