15 lines
353 B
C#
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();
|
|||
|
}
|
|||
|
}
|