/* orxonox - the future of 3D-vertical-scrollers Copyright (C) 2004 orx This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. ### File Specific: main-programmer: bottac@ee.ethz.ch */ #include "bsp_tree_node.h" class BspTreeLeaf : public BspTreeNode { public: BspTreeLeaf(); int leafIndex; /* int cluster; //Visdata cluster index. int area; // Areaportal area. int* mins; // Integer bounding box min coord. int* maxs; // Integer bounding box max coord. int leafface; // First leafface for leaf. int n_leaffaces; // Number of leaffaces for leaf. int leafbrush; // First leafbrush for leaf. int n_leafbrushes; // Number of leafbrushes for leaf. */ };