summaryrefslogtreecommitdiff
path: root/src/KingSystem/Utils/Thread
diff options
context:
space:
mode:
Diffstat (limited to 'src/KingSystem/Utils/Thread')
-rw-r--r--src/KingSystem/Utils/Thread/Task.h2
-rw-r--r--src/KingSystem/Utils/Thread/TaskData.h11
2 files changed, 13 insertions, 0 deletions
diff --git a/src/KingSystem/Utils/Thread/Task.h b/src/KingSystem/Utils/Thread/Task.h
index 4b86abe6..fa5a020c 100644
--- a/src/KingSystem/Utils/Thread/Task.h
+++ b/src/KingSystem/Utils/Thread/Task.h
@@ -73,6 +73,8 @@ KSYS_CHECK_SIZE_NX150(TaskDelegateSetter, 0x10);
class TaskRequest {
SEAD_RTTI_BASE(TaskRequest)
public:
+ // TODO: initialize the members
+ TaskRequest() = default;
virtual ~TaskRequest() = default;
bool mHasHandle;
diff --git a/src/KingSystem/Utils/Thread/TaskData.h b/src/KingSystem/Utils/Thread/TaskData.h
new file mode 100644
index 00000000..68db7ce0
--- /dev/null
+++ b/src/KingSystem/Utils/Thread/TaskData.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include <prim/seadRuntimeTypeInfo.h>
+
+namespace ksys::util {
+
+class TaskData {
+ SEAD_RTTI_BASE(TaskData)
+};
+
+} // namespace ksys::util