diff options
Diffstat (limited to 'src/libjin/Graphics/Texture.h')
-rw-r--r-- | src/libjin/Graphics/Texture.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/libjin/Graphics/Texture.h b/src/libjin/Graphics/Texture.h index 1704ee7..eb16519 100644 --- a/src/libjin/Graphics/Texture.h +++ b/src/libjin/Graphics/Texture.h @@ -9,22 +9,22 @@ #include "Bitmap.h" namespace jin { -namespace graphics -{ + namespace graphics + { - class Texture: public Drawable - { - public: - static Texture* createTexture(Bitmap* bitmap); + class Texture: public Drawable + { + public: + static Texture* createTexture(Bitmap* bitmap); - ~Texture(); + ~Texture(); - private: - Texture(const Bitmap* bitmap); + private: + Texture(const Bitmap* bitmap); - }; + }; -} // graphics + } // graphics } // jin #endif // LIBJIN_MODULES_RENDER |