aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.hpp')
-rw-r--r--src/world.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/world.hpp b/src/world.hpp
index 5933306..696f0aa 100644
--- a/src/world.hpp
+++ b/src/world.hpp
@@ -59,6 +59,7 @@ struct WorldMaterial
class World
{
+ friend class WorldSystem;
private:
unsigned int seed;
unsigned int layers;
@@ -71,7 +72,11 @@ private:
std::unordered_map<std::string, int> string_registry;
std::vector<WorldMaterial> registry;
+protected:
+ // RENDER
std::basic_string<WorldMeshData> mesh;
+ GLuint worldVBO;
+ bool meshUpdated = false;
public:
/* VARS */
sol::function generate;