RState.cs 258 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace athosRT.FSM
  7. {
  8. public enum RState
  9. {
  10. Init,
  11. Running,
  12. End,
  13. Failed,
  14. Timeout,
  15. }
  16. }