prime/include/Kyoto/Text/CWordInstruction.hpp
Phillip Stephens 65efa56f99 Add CWordInstruction
Former-commit-id: 2f75767d00d7ab405b55f8114e9b7c0af2998f47
2023-01-11 16:12:37 -08:00

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