summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/chunk.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/chunk.hpp b/src/chunk.hpp
index 4c6101c..d10adc9 100644
--- a/src/chunk.hpp
+++ b/src/chunk.hpp
@@ -14,6 +14,7 @@
#define INVALID 0
#define AIR 1
#define DIRT 2
+#define GRASS 3
namespace app {
@@ -110,12 +111,12 @@ const float nm[6][3] = {
const float uv[6][2] = {
+ {1.f,0.f},
{1.f,1.f},
{0.f,1.f},
+ {0.f,1.f},
{0.f,0.f},
- {0.f,0.f},
- {1.f,0.f},
- {1.f,1.f}
+ {1.f,0.f}
};
} \ No newline at end of file