prime/include/Kyoto/Text/CFont.hpp
2025-01-29 23:34:30 -07:00

22 lines
341 B
C++

#ifndef _CFONT
#define _CFONT
#include "types.h"
#include "Kyoto/Graphics/CColor.hpp"
class CFont {
public:
CFont(float scale);
~CFont();
int CharWidth(char) const;
void DrawString(const char* str, long x, long y, const CColor& col) const;
private:
int mFontSize;
float mScale;
};
CHECK_SIZEOF(CFont, 0x8);
#endif // _CFONT