Match and link CTextInstruction

This commit is contained in:
2025-05-22 16:55:51 -07:00
parent 9d3246ad2f
commit 664b03c363
16 changed files with 151 additions and 38 deletions

View File

@@ -0,0 +1,18 @@
#ifndef _CLINEINSTRUCTION
#define _CLINEINSTRUCTION
#include "Kyoto/Text/CInstruction.hpp"
class CLineInstruction : public CInstruction {
public:
int GetBaseline() const;
int GetX() const { return x8_x; }
int GetY() const { return xc_y; }
private:
int x4_unk;
int x8_x;
int xc_y;
};
#endif // _CLINEINSTRUCTION