aboutsummaryrefslogtreecommitdiff
path: root/mwe/ecs-homemade/src/Components.cpp
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-10-16 16:50:59 +0200
committermax-001 <maxsmits21@kpnmail.nl>2024-10-16 16:50:59 +0200
commit018f6209378a0c30c1e44fba2f80888553b9f67c (patch)
tree46d79df7053170e13fc28baa1d37bea154ec72b7 /mwe/ecs-homemade/src/Components.cpp
parent5b158d9705f9e912f938f22f2389d6f1dc783b2a (diff)
Added functionality for scripts
Diffstat (limited to 'mwe/ecs-homemade/src/Components.cpp')
-rw-r--r--mwe/ecs-homemade/src/Components.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/mwe/ecs-homemade/src/Components.cpp b/mwe/ecs-homemade/src/Components.cpp
index c8347b3..e6a4673 100644
--- a/mwe/ecs-homemade/src/Components.cpp
+++ b/mwe/ecs-homemade/src/Components.cpp
@@ -9,3 +9,15 @@ Rigidbody::Rigidbody(int mass, int gravityScale, int bodyType)
: mMass(mass), mGravityScale(gravityScale), mBodyType(bodyType) {}
Colider::Colider(int size) : mSize(size) {}
+
+void BehaviourScript::onStart() {
+ if(behaviour) {
+ behaviour->onStart();
+ }
+}
+
+void BehaviourScript::onUpdate() {
+ if(behaviour) {
+ behaviour->onUpdate();
+ }
+}