Match and link CLineSpacingInstruction

Former-commit-id: 481e7e2100
This commit is contained in:
2023-01-07 18:31:19 -08:00
parent eec994634a
commit 6d153e758c
22 changed files with 121 additions and 72 deletions

View File

@@ -0,0 +1,20 @@
#ifndef _CFONTRENDERSTATE
#define _CFONTRENDERSTATE
#include "Kyoto/Text/CSaveableState.hpp"
#include "Kyoto/Text/CDrawStringOptions.hpp"
class CBlockInstruction;
class CFontRenderState : private CSaveableState {
public:
void SetLineSpacing(float spacing) { CSaveableState::SetLineSpacing(spacing); }
private:
CBlockInstruction* x88_curBlock;
CDrawStringOptions x8c_drawOpts;
int xd4_curX;
int xd8_curY;
};
#endif // _CFONTRENDERSTATE