Files
test/Assets/PerfectWorld/Scripts/Task/TaskInterface.cs
T
2025-10-10 15:10:36 +07:00

7 lines
370 B
C#

namespace PerfectWorld.Scripts.Task
{
public interface TaskInterface
{
bool Init(object[] pActiveListBuf, int iActiveListLen, object[] pFinishedListBuf, int iFinishedListLen, object[] pFinishedTimeListBuf, int iFinishedTimeListLen, object[] pFinishedCountListBuf, int iFinishedCountListLen, object[] pStorageTaskListBuf, int iStorageTaskListLen);
}
}