diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-10-10 13:20:35 +0200 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-10-10 13:20:35 +0200 |
commit | 2f644ac353f65cd182be13549e32e9b9409f7aad (patch) | |
tree | 3e1f361d7d72afe24ca146280f8daa5b22e52d6d /mwe/ecs-homemade/src/Components.cpp | |
parent | f5b4e2c84326bd96c78ad1f6e4481c1970e54444 (diff) |
Clang-format
Diffstat (limited to 'mwe/ecs-homemade/src/Components.cpp')
-rw-r--r-- | mwe/ecs-homemade/src/Components.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mwe/ecs-homemade/src/Components.cpp b/mwe/ecs-homemade/src/Components.cpp index 69b5eaa..c8347b3 100644 --- a/mwe/ecs-homemade/src/Components.cpp +++ b/mwe/ecs-homemade/src/Components.cpp @@ -5,6 +5,7 @@ Component::Component() : mActive(true) {} Sprite::Sprite(std::string path) : mPath(path) {} -Rigidbody::Rigidbody(int mass, int gravityScale, int bodyType) : mMass(mass), mGravityScale(gravityScale), mBodyType(bodyType) {} +Rigidbody::Rigidbody(int mass, int gravityScale, int bodyType) + : mMass(mass), mGravityScale(gravityScale), mBodyType(bodyType) {} Colider::Colider(int size) : mSize(size) {} |