diff options
| author | oy <Tom_Adams@web.de> | 2011-04-13 20:37:12 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-04-13 20:37:12 +0200 |
| commit | 06115dd49dca2f8eb5f14606437e8fd20037cc4d (patch) | |
| tree | 5ec4bca6158319b3f5285d7689c5f94ae8da8c93 /src/engine/textrender.h | |
| parent | 63e059b8fff6498e42b765a1dca000e53005ea77 (diff) | |
| download | zcatch-06115dd49dca2f8eb5f14606437e8fd20037cc4d.tar.gz zcatch-06115dd49dca2f8eb5f14606437e8fd20037cc4d.zip | |
added "Whitespace and line Endings cleanup" by GreYFoX
Diffstat (limited to 'src/engine/textrender.h')
| -rw-r--r-- | src/engine/textrender.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/engine/textrender.h b/src/engine/textrender.h index 8d13f605..ddd2be5b 100644 --- a/src/engine/textrender.h +++ b/src/engine/textrender.h @@ -20,12 +20,12 @@ public: int m_LineCount; int m_CharCount; int m_MaxLines; - + float m_StartX; float m_StartY; float m_LineWidth; float m_X, m_Y; - + CFont *m_pFont; float m_FontSize; }; @@ -35,15 +35,15 @@ class ITextRender : public IInterface MACRO_INTERFACE("textrender", 0) public: virtual void SetCursor(CTextCursor *pCursor, float x, float y, float FontSize, int Flags) = 0; - + virtual CFont *LoadFont(const char *pFilename) = 0; virtual void DestroyFont(CFont *pFont) = 0; - + virtual void SetDefaultFont(CFont *pFont) = 0; // virtual void TextEx(CTextCursor *pCursor, const char *pText, int Length) = 0; - + // old foolish interface virtual void TextColor(float r, float g, float b, float a) = 0; virtual void TextOutlineColor(float r, float g, float b, float a) = 0; |