summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAetias <aetias@outlook.com>2025-02-01 09:22:10 +0100
committerAetias <aetias@outlook.com>2025-02-01 09:22:10 +0100
commit362a95521258ac6ffd4dcf1ca87752b6e6d7a04c (patch)
tree40f37fda9f54fc3197caf6b042351c79d1499f52 /src
parent7c91f608f3219df331e04e01fa2d96757f8ee1e6 (diff)
Add ActorSpawner
Diffstat (limited to 'src')
-rw-r--r--src/00_Core/Actor/ActorSpawner.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/00_Core/Actor/ActorSpawner.cpp b/src/00_Core/Actor/ActorSpawner.cpp
new file mode 100644
index 00000000..514156ac
--- /dev/null
+++ b/src/00_Core/Actor/ActorSpawner.cpp
@@ -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) {}