From 477697c6843b3a3ff95003d1f85bf8d440a7eea5 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 13 Aug 2017 20:28:42 +0100 Subject: Improving style and continuing work on version headers --- include/YAGE/spritebatch.hpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'include') diff --git a/include/YAGE/spritebatch.hpp b/include/YAGE/spritebatch.hpp index 1b1c8bb8..d47672ef 100644 --- a/include/YAGE/spritebatch.hpp +++ b/include/YAGE/spritebatch.hpp @@ -23,7 +23,6 @@ class SpriteBatch; /** Glyph with information of the texture. */ class Glyph { - // member variables private: GLuint texture_; float depth_; @@ -32,7 +31,6 @@ private: Vertex bottom_right_; Vertex bottom_left_; - // member functions public: Glyph(GLuint texture, float depth, const Vertex& top_left, const Vertex& top_right, const Vertex& bottom_right, @@ -72,7 +70,6 @@ private: std::vector glyph_ptrs_; std::vector render_batches_; - // member functions public: SpriteBatch(); SpriteBatch(const SpriteBatch&) = delete; @@ -98,6 +95,6 @@ private: void sortGlyphs(); }; -} // yage +} // namespace yage #endif -- cgit