aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.hpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-16 18:16:43 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-16 18:16:43 -0400
commit0236eb7f6391c9d925dcaaddb8cb01ecfb7d5e55 (patch)
treefcc7ad078ec6e2eb0691ab1c4de2915ff6baed78 /src/world.hpp
parentbce8d0687f44def4b0171cd84bf1441fc4390e58 (diff)
Render system is now decoupled from the world system
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;