IEfemPickRoutine.cs 557 B

1234567891011121314151617181920212223242526272829
  1. using Aitex.Core.RT.Routine;
  2. using Aitex.Sorter.Common;
  3. using athosRT.FSM;
  4. using MECF.Framework.Common.Equipment;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace athosRT.Modules.EFEMs.Routine
  11. {
  12. public interface IEfemPickRoutine : FSM.IRoutine
  13. {
  14. new RState Start(params object[] objs);
  15. new RState Monitor();
  16. new void Abort();
  17. ModuleName Source { get; set; }
  18. int Slot { get; set; }
  19. Hand Blade { get; set; }
  20. }
  21. }