summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMike <mikebuntu68@gmail.com>2024-05-03 15:36:27 -0400
committerMike <mikebuntu68@gmail.com>2024-05-04 11:33:48 -0400
commit55f9fa23c87bbbd6c380f71d3f0cb721e1853183 (patch)
treed4107281b0f5d83ed8bca40d6bd435b805b3e96e /include
parent9bf88be6fd36873b1b9eeb2f21f0382b50f34ecb (diff)
Update ActorType ctor arg type
Diffstat (limited to 'include')
-rw-r--r--include/Actor/ActorType.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/Actor/ActorType.hpp b/include/Actor/ActorType.hpp
index 29031faf..dcbc9409 100644
--- a/include/Actor/ActorType.hpp
+++ b/include/Actor/ActorType.hpp
@@ -70,14 +70,14 @@ typedef Actor* (*ActorCreateFunc)();
struct ActorType {
/* 00 */ ActorTypeId id;
/* 04 */ ActorCreateFunc create;
- /* 08 */ void *unk_08;
+ /* 08 */ unk32 (*unk_08)();
/* 0c */ unk32 unk_0c;
/* 10 */ ActorType *next;
/* 14 */
- ActorType(ActorTypeId id, ActorCreateFunc create, void *unk_08);
+ ActorType(ActorTypeId id, ActorCreateFunc create, unk32 (*unk_08)());
~ActorType();
- void func_0203e7c8();
+ unk32 func_0203e7c8();
void Register();
void Unregister();
static ActorType* Find(ActorTypeId id);