1234567891011121314151617181920212223242526272829 |
- using Aitex.Core.RT.Routine;
- using Aitex.Sorter.Common;
- using athosRT.FSM;
- using MECF.Framework.Common.Equipment;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace athosRT.Modules.EFEMs.Routine
- {
- public interface IEfemPickRoutine : FSM.IRoutine
- {
- new RState Start(params object[] objs);
- new RState Monitor();
- new void Abort();
- ModuleName Source { get; set; }
- int Slot { get; set; }
- Hand Blade { get; set; }
- }
- }
|