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