diff options
Diffstat (limited to 'Tools/QtBiomeVisualiser/QtChunk.h')
-rw-r--r-- | Tools/QtBiomeVisualiser/QtChunk.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Tools/QtBiomeVisualiser/QtChunk.h b/Tools/QtBiomeVisualiser/QtChunk.h index d806d18bb..b43ab748f 100644 --- a/Tools/QtBiomeVisualiser/QtChunk.h +++ b/Tools/QtBiomeVisualiser/QtChunk.h @@ -8,7 +8,7 @@ class Chunk { -public: + public: /** The type used for storing image data for a chunk. */ typedef uchar Image[16 * 16 * 4]; @@ -28,7 +28,7 @@ public: /** Returns the raw biome data for this chunk. */ const short * getBiomes(void) const { return m_Biomes; } -protected: + protected: /** Flag that specifies if the chunk data is valid - loaded or generated. */ bool m_IsValid; @@ -38,8 +38,3 @@ protected: }; typedef std::shared_ptr<Chunk> ChunkPtr; - - - - - |