aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/Physics/collider.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/YAGE/Physics/collider.hpp')
-rw-r--r--include/YAGE/Physics/collider.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/YAGE/Physics/collider.hpp b/include/YAGE/Physics/collider.hpp
index fc5d38d5..716b7d4c 100644
--- a/include/YAGE/Physics/collider.hpp
+++ b/include/YAGE/Physics/collider.hpp
@@ -28,9 +28,6 @@ protected:
public:
Collider(const glm::vec2 &position, const glm::vec2 &size) : position_(position), size_(size) {}
- // virtual deconstructor for classes that inherits
- virtual ~Collider() {}
-
// function that checks if two colliders are colliding
virtual bool collides(const Collider &collider) const=0;