mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-10 15:47:41 +00:00
@@ -1,13 +1,16 @@
|
||||
#ifndef _CFONT
|
||||
#define _CFONT
|
||||
|
||||
#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:
|
||||
float mFontSize;
|
||||
int mFontSize;
|
||||
float mScale;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user