]> git.localhorst.tv Git - orbi.git/blobdiff - src/world/AABB.h
entity/entity collision stub
[orbi.git] / src / world / AABB.h
index 9a2d5ebbef4bbe4a3e7a9214d3c9ab9765805163..a0e3436194fd57dbee28b06682babc553ef6edd2 100644 (file)
@@ -32,6 +32,7 @@ public:
        void Move(Vector<float> delta) { lt += delta; rb += delta; }
        void Resize(Vector<float> size) { *this = AABB(lt, size); }
 
+       bool Intersects(const AABB &other) const;
        bool Intersects(const AABB &other, Collision &) const;
 
 private: