Esempio n. 1
0
 public PlayerMoveHandler(
     PlayerInputState inputState,
     Player player)
 {
     _player     = player;
     _inputState = inputState;
 }
 public PlayerShootHandler(
     PlayerInputState inputState,
     Bullet.Pool bulletPool,
     Player player)
 {
     _player     = player;
     _bulletPool = bulletPool;
     _inputState = inputState;
 }
Esempio n. 3
0
 public PlayerInputHandler(PlayerInputState inputState)
 {
     _inputState = inputState;
 }