mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-11 13:07:40 +00:00
Match and link CRemoveColorOverrideInstruction
Former-commit-id: d0b7837042
This commit is contained in:
16
include/Kyoto/Text/CRemoveColorOverrideInstruction.hpp
Normal file
16
include/Kyoto/Text/CRemoveColorOverrideInstruction.hpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user