using Study; namespace SchoenLogger.HOHCI { public class HOHCIStudyManager : StudyManager { protected override void CreateConditions(ref HOHCICondition[] conditions) { conditions = new HOHCICondition[3]; conditions[0] = new HOHCICondition(SteeringMode.frontWheel); conditions[1] = new HOHCICondition(SteeringMode.HMD); conditions[2] = new HOHCICondition(SteeringMode.Leaning); } } }