summaryrefslogtreecommitdiffstats
path: root/src/AssetManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/AssetManager.hpp')
-rw-r--r--src/AssetManager.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/AssetManager.hpp b/src/AssetManager.hpp
index cad7eaf..250524e 100644
--- a/src/AssetManager.hpp
+++ b/src/AssetManager.hpp
@@ -22,6 +22,10 @@ enum FaceDirection {
south,
west,
east,
+ northWest,
+ northEast,
+ southWest,
+ southEast,
none,
};
@@ -32,6 +36,10 @@ static const Vector FaceDirectionVector[] = {
Vector(0,0,1),
Vector(-1,0,0),
Vector(1,0,0),
+ Vector(-1,0,-1),
+ Vector(1,0,-1),
+ Vector(-1,0,1),
+ Vector(1,0,1),
Vector(0,0,0)
};