Changes to mapblock

This commit is contained in:
2022-10-28 23:47:09 -04:00
parent 1a26c07604
commit 12933729b9
3 changed files with 21 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ class NodeManager
int blockX;
int blockZ;
NodeManager(int x, int z)
NodeManager()
{
@@ -50,6 +50,11 @@ class BlockManager
public:
NodeManager mapBlocks[8][8]; // 8 x 8 blocks
BlockManager()
{
}
private:
};