using XLua; namespace Thousandto.Code.Logic { [CSharpCallLua] public interface ITaskController { void AddHoldUI(int uiId); bool CanRuning(); void RemoveHoldUI(int uiId); void ResumeForTransPort(); void Run(int taskId, bool isClick = false, bool isClickByForm = false); void Stop(); } }