mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-11 17:43:59 +00:00
22
include/Kyoto/Text/CInstruction.hpp
Normal file
22
include/Kyoto/Text/CInstruction.hpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef _CINSTRUCTION
|
||||
#define _CINSTRUCTION
|
||||
|
||||
#include "types.h"
|
||||
|
||||
#include "Kyoto/CToken.hpp"
|
||||
|
||||
#include "rstl/vector.hpp"
|
||||
|
||||
class CFontRenderState;
|
||||
class CTextRenderBuffer;
|
||||
|
||||
class CInstruction {
|
||||
public:
|
||||
virtual ~CInstruction() {}
|
||||
virtual void Invoke(CFontRenderState& state, CTextRenderBuffer* buf) const = 0;
|
||||
virtual void PageInvoke(CFontRenderState& state, CTextRenderBuffer* buf) const;// {}
|
||||
virtual void GetAssets(rstl::vector< CToken >& assetsOut) const;// {}
|
||||
virtual uint GetAssetCount() const;// { return 0; }
|
||||
};
|
||||
|
||||
#endif // _CINSTRUCTION
|
||||
Reference in New Issue
Block a user