diff options
Diffstat (limited to 'game/terrain.h')
-rw-r--r-- | game/terrain.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/game/terrain.h b/game/terrain.h index 54593fc..d088f89 100644 --- a/game/terrain.h +++ b/game/terrain.h @@ -2,6 +2,7 @@ #include "chronology.h" #include "collection.h" +#include "config/types.h" #include "game/worldobject.h" #include <gfx/models/mesh.h> #include <gfx/renderable.h> @@ -20,10 +21,16 @@ public: void tick(TickDuration) override; + struct Vertex { + GlobalPosition3D pos; + Normal3D normal; + RGB colourBias; + }; + private: void generateMeshes(); std::shared_ptr<GeoData> geoData; - Collection<Mesh, false> meshes; + Collection<MeshT<Vertex>, false> meshes; std::shared_ptr<Texture> grass; }; |