Oops - made boundary box protected again, it is accessed in the ArenaGraph.

This commit is contained in:
hiker 2016-09-29 15:21:59 +10:00
parent 2e38154bd6
commit 18b1218312

View File

@ -51,16 +51,16 @@ class RTT;
*/
class Graph : public NoCopy
{
private:
/** The 2d bounding box, used for hashing. */
Vec3 m_bb_min;
Vec3 m_bb_max;
protected:
static Graph* m_graph;
std::vector<Quad*> m_all_nodes;
/** The 2d bounding box, used for hashing. */
Vec3 m_bb_min;
Vec3 m_bb_max;
// ------------------------------------------------------------------------
/** Factory method to dynamic create 2d / 3d quad for drive and arena
* graph. */