From 2c2855b77a8a1a6e21a26fea5c5735dfbbc6066d Mon Sep 17 00:00:00 2001 From: JAROWMR Date: Fri, 22 Nov 2024 15:14:29 +0100 Subject: fixed merge master --- src/crepe/system/CollisionSystem.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/crepe/system/CollisionSystem.h') diff --git a/src/crepe/system/CollisionSystem.h b/src/crepe/system/CollisionSystem.h index d94f6bc..69d1d23 100644 --- a/src/crepe/system/CollisionSystem.h +++ b/src/crepe/system/CollisionSystem.h @@ -22,7 +22,8 @@ public: private: //! A variant type that can hold either a BoxCollider or a CircleCollider. - using collider_stor = std::variant; + // using collider_stor = std::variant; + using collider_stor = std::variant, std::reference_wrapper>; /** * \brief A structure to store the collision data of a single collider. -- cgit v1.2.3