2022-10-09 06:55:24 +00:00
|
|
|
#ifndef _CFONT
|
|
|
|
#define _CFONT
|
|
|
|
|
2022-12-23 01:18:13 +00:00
|
|
|
#include "Kyoto/Graphics/CColor.hpp"
|
|
|
|
|
2022-10-09 06:55:24 +00:00
|
|
|
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;
|
2022-10-09 06:55:24 +00:00
|
|
|
private:
|
2022-12-23 01:18:13 +00:00
|
|
|
int mFontSize;
|
2022-10-09 06:55:24 +00:00
|
|
|
float mScale;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CFONT
|