using System; using Study; using UnityEngine; namespace SchoenLogger.HOHCI { [Serializable] public class HOHCICondition : Condition { [SerializeField] public SteeringMode steer; public HOHCICondition() { } public HOHCICondition(SteeringMode steerType) { steer = steerType; } } }