]> de.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 71f399b71eb1cf5ab741be89babad6e5c2c2c379..fc55553130eb2b6f6a0daa4c3496430bc63e51b4 100644 (file)
@@ -1,47 +1,47 @@
 /*
-BobToolz plugin for GtkRadiant
-Copyright (C) 2001 Gordon Biggans
+   BobToolz plugin for GtkRadiant
+   Copyright (C) 2001 Gordon Biggans
 
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
 
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-Lesser General Public License for more details.
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
 
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-*/
+   You should have received a copy of the GNU Lesser General Public
+   License along with this library; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
 
 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;
+CBspPortal *portal;
+unsigned int portal_count;
 
-       bool AddPortal(char* def, unsigned int pointCnt, bool bInverse);
-       unsigned int portal_next;
-       CBspNode();
-       ~CBspNode();
+bool AddPortal( char* def, unsigned int pointCnt, bool bInverse );
+unsigned int portal_next;
+CBspNode();
+~CBspNode();
 };
 
 
@@ -50,14 +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;
 };