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; }
public PlayerInputHandler(PlayerInputState inputState) { _inputState = inputState; }