cleaned up and fleshed out geom.h/geom.cc and preparing to add bounding
[laserbrain_demo] / src / object.cc
index d850d47..3318660 100644 (file)
@@ -35,3 +35,9 @@ void Object::update(float dt)
 void Object::draw() const
 {
 }
 void Object::draw() const
 {
 }
+
+const AABox &Object::get_aabox() const
+{
+       static AABox null_box;
+       return null_box;
+}