From 8d675c71e050b4dcfe5af9b5c7a7f46d97848190 Mon Sep 17 00:00:00 2001 From: TrueBabyChaise Date: Wed, 26 May 2021 16:23:48 +0200 Subject: [PATCH] Fix comments Co-Authored-By: Benjamin HENRY <44569175+EternalRat@users.noreply.github.com> --- sources/Component/Collider/ColliderComponent.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sources/Component/Collider/ColliderComponent.hpp b/sources/Component/Collider/ColliderComponent.hpp index 2a9a56cb..b1826268 100644 --- a/sources/Component/Collider/ColliderComponent.hpp +++ b/sources/Component/Collider/ColliderComponent.hpp @@ -21,18 +21,18 @@ namespace BBM //! @inherit WAL::Component *clone(WAL::Entity &entity) const override; - //! @brief Create a new movable component. + //! @brief Create a new collider component. explicit ColliderComponent(WAL::Entity &entity); - //! @brief Create a new movable component with a callback. + //! @brief Create a new collider component with a callback. ColliderComponent::ColliderComponent(WAL::Entity &entity, std::function callback); - //! @brief A movable component is copy constructable. + //! @brief A collider component is copy constructable. ColliderComponent(const ColliderComponent &) = default; //! @brief A default destructor ~ColliderComponent() override = default; - //! @brief A movable component is not assignable. + //! @brief A collider component is not assignable. ColliderComponent &operator=(const ColliderComponent &) = delete; - friend class MovableSystem; + friend class colliderSystem; }; } // namespace WAL \ No newline at end of file