VpwCellMsg.cs 453 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PunkHPX8_RT.Modules.VpwCell
  7. {
  8. public enum VPWCellMsg
  9. {
  10. Error,
  11. MainInitialize,
  12. Initialize,
  13. ResumeError,
  14. Init,
  15. Abort,
  16. EnterIdle,
  17. Prepare,
  18. Retry,
  19. ManualRecipe,
  20. RunRecipe,
  21. CycleProcessRecipe
  22. }
  23. }