diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/wall-mesh.hpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/wall-mesh.hpp b/src/wall-mesh.hpp index 8daec2c1..e9678e3e 100644 --- a/src/wall-mesh.hpp +++ b/src/wall-mesh.hpp @@ -21,11 +21,8 @@ struct wall_mesh final private: static constexpr auto COUNT1 = TILE_MAX_DIM*2, COUNT = COUNT1 * COUNT1; - using texcoords_array = std::array<Vector2, 4>; - using position_array = std::array<Vector3, 4>; - struct vertex final { - typename texcoords_array::value_type texcoords; + std::array<Vector2, 4> texcoords; }; using quad = std::array<vertex, 4>; |