Finish CRasterFont constructor, has regswaps though

Former-commit-id: febfc28b63
This commit is contained in:
2022-12-23 21:07:46 -08:00
parent 26e8562b06
commit e3cd879f16
2 changed files with 25 additions and 3 deletions

View File

@@ -10,9 +10,8 @@
#include "string.h"
class CGlyph;
class CKernPair;
class CTexture;
class CDrawStringOptions;
class IObjectStore;
class CFontInfo {
@@ -104,6 +103,8 @@ public:
CRasterFont(CInputStream& in, IObjectStore* store);
~CRasterFont();
EFontMode GetMode() const;
void GetSize(const CDrawStringOptions&, int&, int&, const wchar_t*, int) const;
void SetTexture(TToken< CTexture > token) { x80_texture = token; }
bool IsFinishedLoading();