ISafetyAreaStep.cs 241 B

1234567891011
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public interface ISafetyAreaStep
  5. {
  6. void OnEnterStep(object data);
  7. void OnExitStep();
  8. void OnUserCancel();
  9. SafetyAreaStepEnum GetStepEnum();
  10. }