Move ClientTaskInformation to global task header

This commit is contained in:
Michael Cook (mackal)
2019-05-21 22:03:08 -04:00
parent 85a858fcd6
commit 5c1ab3b24c
3 changed files with 19 additions and 18 deletions
-16
View File
@@ -84,22 +84,6 @@ private:
};
struct ClientActivityInformation {
int ActivityID;
int DoneCount;
ActivityState State;
bool Updated; // Flag so we know if we need to update the database
};
struct ClientTaskInformation {
int slot; // intrusive, but makes things easier :P
int TaskID;
int CurrentStep;
int AcceptedTime;
bool Updated;
ClientActivityInformation Activity[MAXACTIVITIESPERTASK];
};
struct CompletedTaskInformation {
int TaskID;
int CompletedTime;