using UnityEngine; namespace ShipHandling { public class ShipState { public float thrustInput = 0; public float boostInput = 0; public float boostCapacity; // Saves the current input for steering public float steerInput = 0; public Vector3 currentGravity = new Vector3(); public bool reset = false; } }