summaryrefslogtreecommitdiff
path: root/src/KingSystem/ActorSystem/actBaseProcCreateTask.h
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2021-03-12 21:11:49 +0100
committerLéo Lam <leo@leolam.fr>2021-03-13 15:16:31 +0100
commit10a7871227c71372c873d677675c4172fdf7f7d9 (patch)
tree206351ff042e491ba1e75940795051ba779930a6 /src/KingSystem/ActorSystem/actBaseProcCreateTask.h
parentafb4e218fa99a055a2231c347f53ca3badd42e37 (diff)
ksys/act: Finish BaseProcInitializer
Diffstat (limited to 'src/KingSystem/ActorSystem/actBaseProcCreateTask.h')
-rw-r--r--src/KingSystem/ActorSystem/actBaseProcCreateTask.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/KingSystem/ActorSystem/actBaseProcCreateTask.h b/src/KingSystem/ActorSystem/actBaseProcCreateTask.h
index c78cf091..50c1c966 100644
--- a/src/KingSystem/ActorSystem/actBaseProcCreateTask.h
+++ b/src/KingSystem/ActorSystem/actBaseProcCreateTask.h
@@ -49,7 +49,7 @@ public:
map::Object* mMapObject{};
InstParamPack::Buffer* mParams{};
BaseProc* mOtherProc{};
- bool _60{};
+ bool mSleepAfterInit{};
};
KSYS_CHECK_SIZE_NX150(BaseProcCreateTaskData, 0x68);
@@ -66,6 +66,12 @@ class BaseProcCreateTask : public util::ManagedTask {
SEAD_RTTI_OVERRIDE(BaseProcCreateTask, util::ManagedTask)
public:
+ enum class LaneId : u8 {
+ _0 = 0,
+ _1 = 1,
+ _2 = 2,
+ };
+
explicit BaseProcCreateTask(sead::Heap* heap);
void onBaseProcCreationFailed(BaseProc* proc, bool set_flag_5);