mirror of https://github.com/PrimeDecomp/prime.git
14 lines
373 B
C++
14 lines
373 B
C++
#ifndef _CWORDINSTRUCTION
|
|
#define _CWORDINSTRUCTION
|
|
|
|
#include "Kyoto/Text/CInstruction.hpp"
|
|
|
|
class CWordInstruction : public CInstruction {
|
|
public:
|
|
void Invoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
|
|
void PageInvoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
|
|
void InvokeLTR(CFontRenderState& state) const;
|
|
};
|
|
|
|
#endif // _CWORDINSTRUCTION
|