Files
2025-01-25 04:38:09 +08:00

15 lines
353 B
C#

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