diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-11-19 20:42:02 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-11-19 20:42:02 +0100 |
commit | 3b615d87f421b576227ef6d0f7e3c5d66c545da2 (patch) | |
tree | 97dfccfa838c4113d2e69d5957e042af1f0150cf /src/crepe/api/BoxCollider.h | |
parent | 0a49b688a79c9cb59c1ed1bdbd1c15f9572deed9 (diff) |
doxygen comment colliders
Diffstat (limited to 'src/crepe/api/BoxCollider.h')
-rw-r--r-- | src/crepe/api/BoxCollider.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/crepe/api/BoxCollider.h b/src/crepe/api/BoxCollider.h index 357c979..7f51cba 100644 --- a/src/crepe/api/BoxCollider.h +++ b/src/crepe/api/BoxCollider.h @@ -5,10 +5,19 @@ namespace crepe { +/** + * \brief A class representing a box-shaped collider. + * + * This class is used for collision detection with other colliders (e.g., CircleCollider). + */ class BoxCollider : public Collider { public: BoxCollider(game_object_id_t game_object_id,Vector2 offset, double width, double height); + + //! Width of box collider double width; + + //! Height of box collider double height; }; |