Add CWordInstruction

Former-commit-id: 2f75767d00
This commit is contained in:
2023-01-11 16:12:37 -08:00
parent 1383cfad4f
commit 65efa56f99
9 changed files with 78 additions and 12 deletions

View File

@@ -0,0 +1,13 @@
#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