diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-16 18:16:43 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-16 18:16:43 -0400 |
commit | 0236eb7f6391c9d925dcaaddb8cb01ecfb7d5e55 (patch) | |
tree | fcc7ad078ec6e2eb0691ab1c4de2915ff6baed78 /src/world.hpp | |
parent | bce8d0687f44def4b0171cd84bf1441fc4390e58 (diff) |
Render system is now decoupled from the world system
Diffstat (limited to 'src/world.hpp')
-rw-r--r-- | src/world.hpp | 5 |
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; |