runner with the collision system

This commit is contained in:
Bluub
2021-06-01 17:21:26 +02:00
parent 0c0b860d04
commit 349da67b29
4 changed files with 50 additions and 12 deletions
@@ -29,5 +29,8 @@ namespace BBM
~CollisionSystem() override = default;
//! @brief A Collision system is assignable.
CollisionSystem &operator=(const CollisionSystem &) = default;
//! @brief check AABB collision
static bool collide(Vector3f minA, Vector3f maxA, Vector3f minB, Vector3f maxB);
};
}