aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/Transform.cpp
diff options
context:
space:
mode:
authorjaroWMR <jarorutjes07@gmail.com>2024-10-20 16:58:13 +0200
committerjaroWMR <jarorutjes07@gmail.com>2024-10-20 16:58:13 +0200
commitcead795b7ff7135e13caf9ad3b76628070391458 (patch)
treef91f5e9f6927727367324961e585d049d2947364 /src/crepe/Transform.cpp
parentd8483cfab70b5aca3baae6e0588924da8b54e090 (diff)
added collision system and circlecollider
Diffstat (limited to 'src/crepe/Transform.cpp')
-rw-r--r--src/crepe/Transform.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/Transform.cpp b/src/crepe/Transform.cpp
index 2fde448..2c39523 100644
--- a/src/crepe/Transform.cpp
+++ b/src/crepe/Transform.cpp
@@ -2,5 +2,5 @@
using namespace crepe;
-Transform::Transform(uint32_t gameObjectId,int mass, int gravityScale, int bodyType)
- : Component(gameObjectId), mass(mass), gravity_scale(gravityScale), body_type(bodyType) {}
+Transform::Transform(uint32_t gameObjectId,Position position, int rotation, int scale)
+ : Component(gameObjectId), postion(postion), rotation(rotation), scale(scale) {}