HALLELUJAH!

This commit is contained in:
MarcEricMartel
2021-11-27 13:35:39 -05:00
parent 1520ade4f0
commit 8e222f39a9
5 changed files with 76 additions and 172 deletions

View File

@@ -23,8 +23,9 @@ 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);
int m_center[2] = {0, 0};
unsigned int m_center[2] = {UINT16_MAX / 2, UINT16_MAX / 2};
};
#endif // WORLD_H__