X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=laserbrain_demo;a=blobdiff_plain;f=src%2Fobject.h;h=3ffec1f6c16a5863f017a9b3e3e5329e130b7e2b;hp=65c39e1710847c678ce324e46ae20ac09a32f2a9;hb=03085a16aa2fef785083fa3921be83015e08b290;hpb=fa954e4716d12939552b592f46a4e08405ecfb24 diff --git a/src/object.h b/src/object.h index 65c39e1..3ffec1f 100644 --- a/src/object.h +++ b/src/object.h @@ -12,12 +12,12 @@ class SceneNode; enum ObjType { OBJ_NULL, OBJ_MESH }; class Object { -private: +protected: std::string name; + mutable AABox aabb; public: Material mtl; - //GeomObject *bvol; SceneNode *node; Object();