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(); } }