diff options
author | Max-001 <80035972+Max-001@users.noreply.github.com> | 2024-10-02 15:54:36 +0200 |
---|---|---|
committer | Max-001 <80035972+Max-001@users.noreply.github.com> | 2024-10-02 15:54:36 +0200 |
commit | 9ef08417da5d3aada6306b70a056355071b8c3ca (patch) | |
tree | b038d70b183f79020972b527a4db0da5011ed0ab /mwe/ecs-homemade/inc/Components.h | |
parent | 2bd37e7d98728d72ba44da18eefea91547a7885a (diff) |
Improved tests
Diffstat (limited to 'mwe/ecs-homemade/inc/Components.h')
-rw-r--r-- | mwe/ecs-homemade/inc/Components.h | 7 |
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; +}; |