mirror of https://github.com/PrimeDecomp/prime.git
18 lines
482 B
C++
18 lines
482 B
C++
#ifndef _CLINESPACINGINSTRUCTION
|
|
#define _CLINESPACINGINSTRUCTION
|
|
|
|
#include "Kyoto/Text/CInstruction.hpp"
|
|
|
|
class CLineSpacingInstruction : public CInstruction {
|
|
public:
|
|
CLineSpacingInstruction(float spacing) : x4_spacing(spacing) {}
|
|
~CLineSpacingInstruction() {}
|
|
|
|
void Invoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
|
|
void PageInvoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
|
|
private:
|
|
float x4_spacing;
|
|
};
|
|
|
|
#endif // _CLINESPACINGINSTRUCTION
|