diff options
author | jaroWMR <jarorutjes07@gmail.com> | 2024-10-20 16:58:13 +0200 |
---|---|---|
committer | jaroWMR <jarorutjes07@gmail.com> | 2024-10-20 16:58:13 +0200 |
commit | cead795b7ff7135e13caf9ad3b76628070391458 (patch) | |
tree | f91f5e9f6927727367324961e585d049d2947364 /src/crepe/Transform.h | |
parent | d8483cfab70b5aca3baae6e0588924da8b54e090 (diff) |
added collision system and circlecollider
Diffstat (limited to 'src/crepe/Transform.h')
-rw-r--r-- | src/crepe/Transform.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/src/crepe/Transform.h b/src/crepe/Transform.h index 96da1a4..3e8d142 100644 --- a/src/crepe/Transform.h +++ b/src/crepe/Transform.h @@ -4,13 +4,19 @@ namespace crepe { +struct Position +{ + int x; + int y; +}; + + class Transform : public Component { public: - Transform(uint32_t gameObjectId,int mass, int gravityScale, int bodyType); - - int mass; - int gravity_scale; - int body_type; + Transform(uint32_t gameObjectId,Position position, int rotation, int scale); + Position postion; + int rotation; + int scale; }; } // namespace crepe |