Font::Font(void)

This commit is contained in:
krystalgamer 2024-09-12 18:29:18 +02:00
parent 75576e8027
commit 7908cca1d5
2 changed files with 15 additions and 0 deletions

View File

@ -7,6 +7,18 @@
#include <cstring>
// @Ok
// @Matching
Font::Font(void)
{
this->field_50 = 0xFFFFFFFF;
}
// @SMALLTODO
Font::Font(u8*, char*)
{
}
// @Ok
Font::~Font(void)
{

View File

@ -9,7 +9,10 @@
class Font : public CClass
{
public:
EXPORT Font(void);
EXPORT Font(u8*, char*);
EXPORT ~Font(void);
EXPORT int GetCharMap(void);
EXPORT void SetCharMap(int);
EXPORT int isEscapeChar(char);