mirror of https://github.com/PrimeDecomp/prime.git
15 lines
181 B
C++
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
|