123456789101112131415161718192021 |
- using athosRT.FSM;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace athosRT.Modules.EFEMs
- {
- public interface IEfemRoutine : IRoutine
- {
- new RState Start(params object[] objs);
- new RState Monitor();
- //bool Initalize();
- new void Abort();
- }
- }
|