示例#1
0
 public GameStartingPresenter(IPlayerBallEntity playerBallEntity,
                              IPlayerBallView playerBallView,
                              IGameModel gameModel)
 {
     PlayerBallEntity = playerBallEntity.CheckNull();
     PlayerBallView   = playerBallView.CheckNull();
     GameModel        = gameModel.CheckNull();
 }
示例#2
0
 public KeyboardControl(IPlayerBallEntity playerBallEntity)
 {
     PlayerBallEntity = playerBallEntity.CheckNull();
 }
示例#3
0
 public void Initializable(IPlayerBallEntity playerBallEntity, float startZ)
 {
     _playerBallEntity     = playerBallEntity.CheckNull();
     Position              = new Vector3(0, 0, startZ);
     _rigidbody.useGravity = true;
 }