mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-07-12 18:18:57 -07:00
17 lines
477 B
C++
17 lines
477 B
C++
#ifndef _CREMOVECOLOROVERRIDEINSTRUCTION
|
|||
|
|
#define _CREMOVECOLOROVERRIDEINSTRUCTION
|
||
|
|
|
||
|
|
#include "Kyoto/Text/CInstruction.hpp"
|
||
|
|
|
||
|
|
class CRemoveColorOverrideInstruction : public CInstruction {
|
||
|
|
public:
|
||
|
|
explicit CRemoveColorOverrideInstruction(int idx) : x4_idx(idx) {}
|
||
|
|
void Invoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
|
||
|
|
void PageInvoke(CFontRenderState& state, CTextRenderBuffer* buf) const;
|
||
|
|
|
||
|
|
private:
|
||
|
|
int x4_idx;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // _CREMOVECOLOROVERRIDEINSTRUCTION
|