prime/include/Kyoto/Text/CFont.hpp

18 lines
294 B
C++
Raw Normal View History

#ifndef _CFONT
#define _CFONT
2022-12-23 01:18:13 +00:00
#include "Kyoto/Graphics/CColor.hpp"
class CFont {
public:
CFont(float scale);
~CFont();
int CharWidth(char) const;
2022-12-23 01:18:13 +00:00
void DrawString(const char* str, long x, long y, const CColor& col) const;
private:
2022-12-23 01:18:13 +00:00
int mFontSize;
float mScale;
};
#endif // _CFONT