HOHCIStudyManager.cs 539 B

1234567891011121314
  1. namespace SchoenLogger.HOHCI
  2. {
  3. public class HOHCIStudyManager : StudyManager<HOHCICondition>
  4. {
  5. protected override void CreateConditions(ref HOHCICondition[] conditions)
  6. {
  7. conditions = new HOHCICondition[3];
  8. conditions[0] = new HOHCICondition(HOHCICondition.SteeringType.handlebarSteering);
  9. conditions[1] = new HOHCICondition(HOHCICondition.SteeringType.hmdSteering);
  10. conditions[2] = new HOHCICondition(HOHCICondition.SteeringType.leanSteering);
  11. }
  12. }
  13. }