using System; using UnityEngine; namespace SchoenLogger.HOHCI { [Serializable] public class HOHCICondition : Condition { public enum SteeringType { handlebarSteering, hmdSteering, leanSteering } [SerializeField] public SteeringType steer; public HOHCICondition() { } public HOHCICondition(SteeringType steerType) { steer = steerType; } } }