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