示例#1
0
 public ColisionManager(PlayerModel firstPlayer, PlayerModel secondPlayer, BallModel ball, GraphicsDeviceManager graphics)
 {
     this.firstPlayer  = firstPlayer;
     this.secondPlayer = secondPlayer;
     this.ball         = ball;
     this.graphics     = graphics;
 }
示例#2
0
 public EndManager(PlayerModel firstPlayer, PlayerModel secondPlayer, BallModel ball, GraphicsDeviceManager graphics, IPlayerScoredRequestor requestor)
 {
     this.firstPlayer  = firstPlayer;
     this.secondPlayer = secondPlayer;
     this.ball         = ball;
     this.graphics     = graphics;
     this.requestor    = requestor;
 }
示例#3
0
 public BallMovementManager(BallModel ball)
 {
     this.ball = ball;
 }