diff options
| author | Aetias <aetias@outlook.com> | 2025-02-01 09:22:10 +0100 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2025-02-01 09:22:10 +0100 |
| commit | 362a95521258ac6ffd4dcf1ca87752b6e6d7a04c (patch) | |
| tree | 40f37fda9f54fc3197caf6b042351c79d1499f52 /src | |
| parent | 7c91f608f3219df331e04e01fa2d96757f8ee1e6 (diff) | |
Add ActorSpawner
Diffstat (limited to 'src')
| -rw-r--r-- | src/00_Core/Actor/ActorSpawner.cpp | 10 |
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) {} |
