mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-19 10:51:33 +00:00
19 lines
327 B
C++
19 lines
327 B
C++
#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
|