diff options
Diffstat (limited to 'src/libjin/Graphics/Texture.cpp')
-rw-r--r-- | src/libjin/Graphics/Texture.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/libjin/Graphics/Texture.cpp b/src/libjin/Graphics/Texture.cpp index a42e796..915fe54 100644 --- a/src/libjin/Graphics/Texture.cpp +++ b/src/libjin/Graphics/Texture.cpp @@ -8,27 +8,27 @@ namespace jin { -namespace graphics -{ + namespace graphics + { - using namespace jin::math; + using namespace jin::math; - /*static*/ Texture* Texture::createTexture(Bitmap* bitmap) - { - Texture* tex = new Texture(bitmap); - return tex; - } + /*static*/ Texture* Texture::createTexture(Bitmap* bitmap) + { + Texture* tex = new Texture(bitmap); + return tex; + } - Texture::Texture(const Bitmap* bitmap) - : Drawable(bitmap) - { - } + Texture::Texture(const Bitmap* bitmap) + : Drawable(bitmap) + { + } - Texture::~Texture() - { - } + Texture::~Texture() + { + } -} // graphics + } // graphics } // jin #endif // LIBJIN_MODULES_RENDER
\ No newline at end of file |