prime/include/Kyoto/Text/CFont.hpp
Phillip Stephens ac0e3ef534 Match CConsoleOutputWindow, regswaps in constructor
Former-commit-id: 27bd20ff1daa1fdfd0557197aaeefbb1e9f8ca89
2022-10-08 23:55:36 -07:00

15 lines
181 B
C++

#ifndef _CFONT
#define _CFONT
class CFont {
public:
CFont(float scale);
~CFont();
int CharWidth(char) const;
private:
float mFontSize;
float mScale;
};
#endif // _CFONT