diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-06 03:12:48 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-10-06 03:12:48 -0400 |
commit | 1a909087ddfdfe3b947c65b07287a08a40f119ce (patch) | |
tree | 64df54d9634731b6fc1a60e8ec6d42afab5b608a /src/events/world.hpp | |
parent | a62d96ad0521b064e6ef61a6f80888e27966502b (diff) |
World is now saved as image files instead of generations
Diffstat (limited to 'src/events/world.hpp')
-rw-r--r-- | src/events/world.hpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/events/world.hpp b/src/events/world.hpp index e5969c0..e6f6d79 100644 --- a/src/events/world.hpp +++ b/src/events/world.hpp @@ -28,16 +28,4 @@ struct WorldChangeEvent newWorld(w) {} }; -struct WorldMeshUpdateEvent -{ - GLuint worldVBO; - unsigned int numVertex; - GLuint worldTexture; - GLuint worldNormal; - - WorldMeshUpdateEvent(GLuint v, unsigned int p, - GLuint t, GLuint n) : - worldVBO(v), numVertex(p), worldTexture(t), worldNormal(n) {} -}; - #endif//EVENTS_WORLD_HPP |