]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - contrib/bobtoolz/CPortals.h
reformat code! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / contrib / bobtoolz / CPortals.h
index fc55553130eb2b6f6a0daa4c3496430bc63e51b4..eea867cc607ee3249e9f3c46e4b945cbb85eed9d 100644 (file)
 
 class CBspPoint {
 public:
-float p[3];
+    float p[3];
 };
 
 class CBspPortal {
 public:
-CBspPortal();
-~CBspPortal();
+    CBspPortal();
 
-unsigned point_count;
-CBspPoint *point;
-bool Build( char *def, unsigned int pointCnt, bool bInverse );
+    ~CBspPortal();
+
+    unsigned point_count;
+    CBspPoint *point;
+
+    bool Build(char *def, unsigned int pointCnt, bool bInverse);
 };
 
 
 class CBspNode {
 public:
-CBspPortal *portal;
-unsigned int portal_count;
+    CBspPortal *portal;
+    unsigned int portal_count;
+
+    bool AddPortal(char *def, unsigned int pointCnt, bool bInverse);
 
-bool AddPortal( char* def, unsigned int pointCnt, bool bInverse );
-unsigned int portal_next;
-CBspNode();
-~CBspNode();
+    unsigned int portal_next;
+
+    CBspNode();
+
+    ~CBspNode();
 };
 
 
@@ -50,14 +55,15 @@ CBspNode();
 class CPortals {
 public:
 
-CPortals();
-~CPortals();
+    CPortals();
+
+    ~CPortals();
 
-void Load();     // use filename in fn
-void Purge();
+    void Load();     // use filename in fn
+    void Purge();
 
-char fn[NAME_MAX];
-CBspNode *node;
+    char fn[NAME_MAX];
+    CBspNode *node;
 
-unsigned int node_count;
+    unsigned int node_count;
 };