Inheritance: Microsoft.Xna.Framework.Game
Exemplo n.º 1
0
 public ScoreboardQuad(BasketballGame basketballGame, TouchCamera camera, ScoreboardView scoreboardView)
     : base(basketballGame)
 {
     this.basketballGame = basketballGame;
     this.camera         = camera;
     this.scoreboardView = scoreboardView;
 }
Exemplo n.º 2
0
 public ScoreboardView(BasketballGame game, Team homeTeam, Team guestTeam, Clock clock)
     : base(game)
 {
     this.Visible = false;
     this.homeTeam = homeTeam;
     this.guestTeam = guestTeam;
     this.clock = clock;
 }
Exemplo n.º 3
0
 public ScoreboardView(BasketballGame game, Team homeTeam, Team guestTeam, Clock clock)
     : base(game)
 {
     this.Visible   = false;
     this.homeTeam  = homeTeam;
     this.guestTeam = guestTeam;
     this.clock     = clock;
 }