IEfemRoutine.cs 367 B

123456789101112131415161718192021
  1. using athosRT.FSM;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace athosRT.Modules.EFEMs
  8. {
  9. public interface IEfemRoutine : IRoutine
  10. {
  11. new RState Start(params object[] objs);
  12. new RState Monitor();
  13. //bool Initalize();
  14. new void Abort();
  15. }
  16. }