mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-10 16:27:41 +00:00
Match and link CTextInstruction
This commit is contained in:
18
include/Kyoto/Text/CLineInstruction.hpp
Normal file
18
include/Kyoto/Text/CLineInstruction.hpp
Normal 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
|
||||
Reference in New Issue
Block a user