mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-15 15:51:19 +00:00
17 lines
401 B
C++
17 lines
401 B
C++
#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
|