Add ActorSpawner

This commit is contained in:
Aetias
2025-02-01 09:22:10 +01:00
parent 7c91f608f3
commit 362a955212
6 changed files with 53 additions and 18 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "Actor/ActorSpawner.hpp"
ActorSpawner *ActorSpawner::Create() {}
void ActorSpawner::Destroy() {}
ActorSpawner::ActorSpawner() {}
ActorSpawner::~ActorSpawner() {}
void ActorSpawner::_ZN12ActorSpawner19func_ov000_020c4014Ev() {}
void ActorSpawner::_ZN12ActorSpawner19func_ov000_020c4018Ev() {}
Actor *ActorSpawner::CreateActor(ActorTypeId type) {}
s32 ActorSpawner::Spawn(ActorTypeId type, Vec3p *pos, void *param3, ActorRef *ref) {}