diff options
Diffstat (limited to 'src/RendererSectionData.hpp')
-rw-r--r-- | src/RendererSectionData.hpp | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/RendererSectionData.hpp b/src/RendererSectionData.hpp index 1250d39..e472e99 100644 --- a/src/RendererSectionData.hpp +++ b/src/RendererSectionData.hpp @@ -6,21 +6,12 @@ #include "Vector.hpp" #include "Section.hpp" +#include "AssetManager.hpp" class World; -enum BlockDirection { - down, //Y- - up, //Y+ - north, //Z- - south, //Z+ - west, //X- - east, //X+ - none, -}; - struct BlockLightness { - unsigned char face[BlockDirection::none] = { 0,0,0,0,0,0 }; + unsigned char face[FaceDirection::none] = { 0,0,0,0,0,0 }; }; struct SectionsData { |