This commit is contained in:
MarcEricMartel
2021-11-27 14:14:05 -05:00
parent 8e222f39a9
commit de7945038c
6 changed files with 31 additions and 14 deletions

View File

@@ -23,7 +23,6 @@ class World {
private:
Array2d<Chunk*> m_chunks = Array2d<Chunk*>(WORLD_SIZE_X, WORLD_SIZE_Y);
Array2d<Chunk*> m_buffer = Array2d<Chunk*>(WORLD_SIZE_X, WORLD_SIZE_Y);
unsigned int m_center[2] = {UINT16_MAX / 2, UINT16_MAX / 2};
};