public bool WasPressed(PlayerInput.Button button) => Current.IsPressed(button) && !Previous.IsPressed(button);
 public bool WasRelease(PlayerInput.Button button) => !Current.IsPressed(button) && Previous.IsPressed(button);
 public bool IsPressed(PlayerInput.Button button) => Current.IsPressed(button);