diff options
Diffstat (limited to 'Tools/BlockZapper/Regions.h')
-rw-r--r-- | Tools/BlockZapper/Regions.h | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/Tools/BlockZapper/Regions.h b/Tools/BlockZapper/Regions.h index 2fe50a9b4..b740f62f6 100644 --- a/Tools/BlockZapper/Regions.h +++ b/Tools/BlockZapper/Regions.h @@ -25,10 +25,19 @@ struct cRegion bool m_ShouldZapEntities; cRegion(void); - cRegion(int a_MinX, int a_MaxX, int a_MinY, int a_MaxY, int a_MinZ, int a_MaxZ, bool a_ShouldZapBlocks, bool a_ShouldZapEntities); + cRegion( + int a_MinX, + int a_MaxX, + int a_MinY, + int a_MaxY, + int a_MinZ, + int a_MaxZ, + bool a_ShouldZapBlocks, + bool a_ShouldZapEntities + ); bool TouchesChunk(int a_ChunkX, int a_ChunkZ) const; -} ; +}; typedef std::vector<cRegion> cRegionVector; @@ -38,17 +47,16 @@ typedef std::vector<cRegion> cRegionVector; class cRegions { -public: + public: /** Reads the list of regions from the specified stream */ void Read(std::istream & a_Stream); /** Returns all regions in this container */ const cRegionVector & GetAll(void) const { return m_Regions; } -protected: + protected: cRegionVector m_Regions; /** Adds a new region based on the contents of the split line. The split must already be the correct size */ void AddRegion(const AStringVector & a_Split); - -} ; +}; |