aboutsummaryrefslogtreecommitdiff
path: root/mwe/ecs-homemade/inc/Components.h
diff options
context:
space:
mode:
authorMax-001 <80035972+Max-001@users.noreply.github.com>2024-10-02 15:54:36 +0200
committerMax-001 <80035972+Max-001@users.noreply.github.com>2024-10-02 15:54:36 +0200
commit9ef08417da5d3aada6306b70a056355071b8c3ca (patch)
treeb038d70b183f79020972b527a4db0da5011ed0ab /mwe/ecs-homemade/inc/Components.h
parent2bd37e7d98728d72ba44da18eefea91547a7885a (diff)
Improved tests
Diffstat (limited to 'mwe/ecs-homemade/inc/Components.h')
-rw-r--r--mwe/ecs-homemade/inc/Components.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/mwe/ecs-homemade/inc/Components.h b/mwe/ecs-homemade/inc/Components.h
index 1ea8428..2645a45 100644
--- a/mwe/ecs-homemade/inc/Components.h
+++ b/mwe/ecs-homemade/inc/Components.h
@@ -20,3 +20,10 @@ public:
int mGravityScale;
int mBodyType;
};
+
+class Colider : public Component {
+public:
+ Colider(int size);
+
+ int mSize;
+};