/* * Collision.h * * Created on: Mar 8, 2020 * Author: ayoungblood */ #ifndef SRC_COLLISION_H_ #define SRC_COLLISION_H_ #include // #include "Vector2D.h" class ColliderComponent; class Collision { public: static bool AABB(const SDL_Rect& recA, const SDL_Rect& recB); static bool AABB(const ColliderComponent& colA, const ColliderComponent& colB); // void showColType(); }; #endif /* SRC_COLLISION_H_ */