diff options
Diffstat (limited to 'src/libjin/Graphics/Font/je_texture_font.cpp')
-rw-r--r-- | src/libjin/Graphics/Font/je_texture_font.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libjin/Graphics/Font/je_texture_font.cpp b/src/libjin/Graphics/Font/je_texture_font.cpp index 5834140..15d0ace 100644 --- a/src/libjin/Graphics/Font/je_texture_font.cpp +++ b/src/libjin/Graphics/Font/je_texture_font.cpp @@ -6,14 +6,14 @@ #include "je_texture_font.h" +using namespace std; +using namespace JinEngine::Math; + namespace JinEngine { namespace Graphics { - using namespace std; - using namespace Math; - TextureFont * TextureFont::createTextureFont(const Bitmap* bitmap, const Content& codepoints, int cellw, int cellh) { TextureFont* tf = new TextureFont(bitmap, codepoints, cellw, cellh); |