X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=contrib%2Fbobtoolz%2FDMap.h;h=99590347a5357588259165fe5b5db94777d1a545;hb=9dfae1c9b270ee369c6362903a9205b30751b95f;hp=018dbc0f28447701822300c83074b37548ddb208;hpb=bfc8a12a6b315ae261101a34db8ba1b682c67bb7;p=xonotic%2Fnetradiant.git diff --git a/contrib/bobtoolz/DMap.h b/contrib/bobtoolz/DMap.h index 018dbc0f..99590347 100644 --- a/contrib/bobtoolz/DMap.h +++ b/contrib/bobtoolz/DMap.h @@ -1,27 +1,27 @@ /* -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 + */ // DMap.h: interface for the DMap class. // ////////////////////////////////////////////////////////////////////// -#if !defined(AFX_DMAP_H__ACAE597A_D26D_49AD_AA69_EDE743DB54FA__INCLUDED_) +#if !defined( AFX_DMAP_H__ACAE597A_D26D_49AD_AA69_EDE743DB54FA__INCLUDED_ ) #define AFX_DMAP_H__ACAE597A_D26D_49AD_AA69_EDE743DB54FA__INCLUDED_ #if _MSC_VER > 1000 @@ -32,27 +32,35 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA class DEntity; -class DMap -{ +class DMap { public: - static void RebuildEntity(DEntity* ent); + static void RebuildEntity(DEntity *ent); - void ResetTextures( const char* textureName, float fScale[2], float fShift[2], int rotation, const char* newTextureName, int bResetTextureName, int bResetScale[2], int bResetShift[2], int bResetRotation); - void LoadAll(bool bLoadPatches = false); - void BuildInRadiant(bool bAllowDestruction); - int m_nNextEntity; - DEntity* GetWorldSpawn(); - void ClearEntities(); + void + ResetTextures(const char *textureName, float fScale[2], float fShift[2], int rotation, const char *newTextureName, + int bResetTextureName, int bResetScale[2], int bResetShift[2], int bResetRotation); - DEntity* GetEntityForID(int ID); - DEntity* AddEntity(char* classname = "worldspawn", int ID = -1); + void LoadAll(bool bLoadPatches = false); - std::list entityList; + void BuildInRadiant(bool bAllowDestruction); - DMap(); - virtual ~DMap(); + int m_nNextEntity; - int FixBrushes(); + DEntity *GetWorldSpawn(); + + void ClearEntities(); + + DEntity *GetEntityForID(int ID); + + DEntity *AddEntity(const char *classname = "worldspawn", int ID = -1); + + std::list entityList; + + DMap(); + + virtual ~DMap(); + + int FixBrushes(); }; #endif // !defined(AFX_DMAP_H__ACAE597A_D26D_49AD_AA69_EDE743DB54FA__INCLUDED_)