I am making a voxel game (a bit like Minecraft) in C++(11), and I've come across an issue with creating a world efficiently.
In my program, I have a World class, which holds a 3D array of Region class pointers. When I initialize the world, I give it a width, height, and depth so it
…