]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - contrib/bobtoolz/CPortals.h
eol style
[xonotic/netradiant.git] / contrib / bobtoolz / CPortals.h
index bc9d16ac8cf5b911d78fd55e09193da7cc05b6b9..60506be8492787e42bc2e3578e3f180c2a047f68 100644 (file)
@@ -1,63 +1,63 @@
-/*\r
-BobToolz plugin for GtkRadiant\r
-Copyright (C) 2001 Gordon Biggans\r
-\r
-This library is free software; you can redistribute it and/or\r
-modify it under the terms of the GNU Lesser General Public\r
-License as published by the Free Software Foundation; either\r
-version 2.1 of the License, or (at your option) any later version.\r
-\r
-This library is distributed in the hope that it will be useful,\r
-but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU\r
-Lesser General Public License for more details.\r
-\r
-You should have received a copy of the GNU Lesser General Public\r
-License along with this library; if not, write to the Free Software\r
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
-*/\r
-\r
-#include "StdAfx.h"    // Added by ClassView\r
-\r
-class CBspPoint {\r
-public:\r
-       float p[3];\r
-};\r
-\r
-class CBspPortal {\r
-public:\r
-       CBspPortal();\r
-       ~CBspPortal();\r
-\r
-       unsigned point_count;\r
-       CBspPoint *point;\r
-       bool Build(char *def, unsigned int pointCnt, bool bInverse);\r
-};\r
-\r
-\r
-class CBspNode {\r
-public:\r
-       CBspPortal *portal;\r
-       unsigned int portal_count;\r
-\r
-       bool AddPortal(char* def, unsigned int pointCnt, bool bInverse);\r
-       unsigned int portal_next;\r
-       CBspNode();\r
-       ~CBspNode();\r
-};\r
-\r
-\r
-class CPortals {\r
-public:\r
-\r
-       CPortals();\r
-       ~CPortals();\r
-\r
-       void Load(); // use filename in fn\r
-       void Purge();\r
-\r
-       char fn[PATH_MAX];\r
-       CBspNode *node;\r
-\r
-       unsigned int node_count;\r
-};\r
+/*
+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 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
+*/
+
+#include "StdAfx.h"    // Added by ClassView
+
+class CBspPoint {
+public:
+       float p[3];
+};
+
+class CBspPortal {
+public:
+       CBspPortal();
+       ~CBspPortal();
+
+       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);
+       unsigned int portal_next;
+       CBspNode();
+       ~CBspNode();
+};
+
+
+class CPortals {
+public:
+
+       CPortals();
+       ~CPortals();
+
+       void Load(); // use filename in fn
+       void Purge();
+
+       char fn[PATH_MAX];
+       CBspNode *node;
+
+       unsigned int node_count;
+};