aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/graphics/fonts/je_texture_font.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/graphics/fonts/je_texture_font.h')
-rw-r--r--src/libjin/graphics/fonts/je_texture_font.h19
1 files changed, 4 insertions, 15 deletions
diff --git a/src/libjin/graphics/fonts/je_texture_font.h b/src/libjin/graphics/fonts/je_texture_font.h
index df8f956..a753cac 100644
--- a/src/libjin/graphics/fonts/je_texture_font.h
+++ b/src/libjin/graphics/fonts/je_texture_font.h
@@ -26,26 +26,25 @@ namespace JinEngine
class TextureFont : public Font, public Graphic
{
public:
-
///
///
///
- static TextureFont* createTextureFont(const Bitmap* bitmap, const Content& codepoints, int cellw, int cellh);
+ TextureFont(const Bitmap* bitmap, const Content& codepoints, int cellw, int cellh);
///
///
///
- static TextureFont* createTextureFont(const Bitmap* bitmap, const Text& text, int cellw, int cellh);
+ TextureFont(const Bitmap* bitmap, const Content& codepoints, Color mask, int cellh);
///
///
///
- static TextureFont* createTextureFont(const Bitmap* bitmap, const Content& codepoints, Color mask, int cellh);
+ TextureFont(const Bitmap* bitmap, const Text& text, Color mask, int cellh);
///
///
///
- static TextureFont* createTextureFont(const Bitmap* bitmap, const Text& text, Color mask, int cellh);
+ TextureFont(const Bitmap* bitmap, const Text& text, int cellw, int cellh);
///
///
@@ -90,16 +89,6 @@ namespace JinEngine
///
///
///
- TextureFont(const Bitmap* bitmap, const Content& codepoints, int cellw, int cellh);
-
- ///
- ///
- ///
- TextureFont(const Bitmap* bitmap, const Content& codepoints, Color mask, int cellh);
-
- ///
- ///
- ///
int getCharWidth(int c);
///