mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-10 11:07:41 +00:00
17
include/Kyoto/Text/CLineExtraSpaceInstruction.hpp
Normal file
17
include/Kyoto/Text/CLineExtraSpaceInstruction.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef _CLINEEXTRASPACINGINSTRUCTION
|
||||
#define _CLINEEXTRASPACINGINSTRUCTION
|
||||
|
||||
#include "Kyoto/Text/CInstruction.hpp"
|
||||
|
||||
class CLineExtraSpaceInstruction : public CInstruction {
|
||||
public:
|
||||
CLineExtraSpaceInstruction(int spacing) : x4_spacing(spacing) {}
|
||||
~CLineExtraSpaceInstruction() {}
|
||||
|
||||
void Invoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
|
||||
void PageInvoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
|
||||
private:
|
||||
int x4_spacing;
|
||||
};
|
||||
|
||||
#endif // _CLINEEXTRASPACINGINSTRUCTION
|
||||
Reference in New Issue
Block a user