summaryrefslogtreecommitdiff
path: root/src/KingSystem/ActorSystem/actActorParam.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/KingSystem/ActorSystem/actActorParam.cpp')
-rw-r--r--src/KingSystem/ActorSystem/actActorParam.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/KingSystem/ActorSystem/actActorParam.cpp b/src/KingSystem/ActorSystem/actActorParam.cpp
new file mode 100644
index 00000000..a615f2db
--- /dev/null
+++ b/src/KingSystem/ActorSystem/actActorParam.cpp
@@ -0,0 +1,21 @@
+#include "KingSystem/ActorSystem/actActorParam.h"
+
+namespace ksys::act {
+
+ActorParam::Resources ActorParam::sDummyResources;
+
+void ActorParam::resetDummyResources() {
+ sDummyResources = {};
+}
+
+ActorParam::ActorParam() {
+ mRes = {};
+ mNumHandles1 = mNumHandles2 = 0;
+ mEvent.resetSignal();
+}
+
+ActorParam::~ActorParam() {
+ finalize();
+}
+
+} // namespace ksys::act