HOHCICondition.cs 361 B

123456789101112131415161718192021
  1. using System;
  2. using Study;
  3. using UnityEngine;
  4. namespace SchoenLogger.HOHCI
  5. {
  6. [Serializable]
  7. public class HOHCICondition : Condition
  8. {
  9. [SerializeField]
  10. public SteeringMode steer;
  11. public HOHCICondition() { }
  12. public HOHCICondition(SteeringMode steerType)
  13. {
  14. steer = steerType;
  15. }
  16. }
  17. }