More text implementations

Former-commit-id: 4b664aaf36
This commit is contained in:
2023-01-11 11:08:11 -08:00
parent 94dec52cae
commit 2bd5aa55f8
16 changed files with 160 additions and 31 deletions

View File

@@ -0,0 +1,16 @@
#ifndef _CPOPSTATEINSTRUCTION
#define _CPOPSTATEINSTRUCTION
#include "Kyoto/Text/CInstruction.hpp"
class CPopStateInstruction : public CInstruction {
public:
CPopStateInstruction() {}
~CPopStateInstruction() {}
void Invoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
void PageInvoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
};
#endif // _CPOPSTATEINSTRUCTION