mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-10 16:27:41 +00:00
17
include/Kyoto/Text/CLineSpacingInstruction.hpp
Normal file
17
include/Kyoto/Text/CLineSpacingInstruction.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user