mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-06-08 22:33:30 +00:00
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
|