Updated mapblock code

This commit is contained in:
Functioning Member of Society 2022-10-26 17:13:48 -04:00
parent fd496dd085
commit c72cdc23a4
2 changed files with 5 additions and 0 deletions

View File

@ -47,6 +47,10 @@ class NodeManager
class BlockManager
{
public:
NodeManager mapBlocks[8][8]; // 8 x 8 blocks
private:
};

View File

@ -9,6 +9,7 @@
#include <random>
NodeRenderer renderer;
BlockManager blockManager;
NodeManager nodeManager(0, 0);
NodeManager nodeManager1(1, 0);
TextureHandler textureHandler;