]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - contrib/bobtoolz/CPortals.h
Revert partially (auto) "reformat code! now the code is only ugly on the *inside*"
[xonotic/netradiant.git] / contrib / bobtoolz / CPortals.h
index eea867cc607ee3249e9f3c46e4b945cbb85eed9d..fc55553130eb2b6f6a0daa4c3496430bc63e51b4 100644 (file)
 
 class CBspPoint {
 public:
-    float p[3];
+float p[3];
 };
 
 class CBspPortal {
 public:
-    CBspPortal();
+CBspPortal();
+~CBspPortal();
 
-    ~CBspPortal();
-
-    unsigned point_count;
-    CBspPoint *point;
-
-    bool Build(char *def, unsigned int pointCnt, bool bInverse);
+unsigned point_count;
+CBspPoint *point;
+bool Build( char *def, unsigned int pointCnt, bool bInverse );
 };
 
 
 class CBspNode {
 public:
-    CBspPortal *portal;
-    unsigned int portal_count;
-
-    bool AddPortal(char *def, unsigned int pointCnt, bool bInverse);
+CBspPortal *portal;
+unsigned int portal_count;
 
-    unsigned int portal_next;
-
-    CBspNode();
-
-    ~CBspNode();
+bool AddPortal( char* def, unsigned int pointCnt, bool bInverse );
+unsigned int portal_next;
+CBspNode();
+~CBspNode();
 };
 
 
@@ -55,15 +50,14 @@ public:
 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;
 };