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