HOHCIStudyManager.cs 486 B

123456789101112131415
  1. using Study;
  2. namespace SchoenLogger.HOHCI
  3. {
  4. public class HOHCIStudyManager : StudyManager<HOHCICondition>
  5. {
  6. protected override void CreateConditions(ref HOHCICondition[] conditions)
  7. {
  8. conditions = new HOHCICondition[3];
  9. conditions[0] = new HOHCICondition(SteeringMode.frontWheel);
  10. conditions[1] = new HOHCICondition(SteeringMode.HMD);
  11. conditions[2] = new HOHCICondition(SteeringMode.Leaning);
  12. }
  13. }
  14. }