Task update events should be task type aware now

This commit is contained in:
Michael Cook (mackal)
2018-07-05 00:13:19 -04:00
parent 2f4fb46007
commit 0367bc3465
4 changed files with 257 additions and 175 deletions
+2 -2
View File
@@ -1001,8 +1001,8 @@ public:
// Task System Methods
void LoadClientTaskState();
void RemoveClientTaskState();
void SendTaskActivityComplete(int TaskID, int ActivityID, int TaskIndex, int TaskIncomplete=1);
void SendTaskFailed(int TaskID, int TaskIndex);
void SendTaskActivityComplete(int TaskID, int ActivityID, int TaskIndex, TaskType type, int TaskIncomplete=1);
void SendTaskFailed(int TaskID, int TaskIndex, TaskType type);
void SendTaskComplete(int TaskIndex);
inline ClientTaskState *GetTaskState() const { return taskstate; }