mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-05 21:05:54 +00:00
15 lines
732 B
C
15 lines
732 B
C
|
#pragma once
|
||
|
|
||
|
typedef rw::Charset RtCharset;
|
||
|
typedef rw::Charset::Desc RtCharsetDesc;
|
||
|
|
||
|
RwBool RtCharsetOpen(void);
|
||
|
void RtCharsetClose(void);
|
||
|
RtCharset *RtCharsetPrint(RtCharset * charSet, const RwChar * string, RwInt32 x, RwInt32 y);
|
||
|
RtCharset *RtCharsetPrintBuffered(RtCharset * charSet, const RwChar * string, RwInt32 x, RwInt32 y, RwBool hideSpaces);
|
||
|
RwBool RtCharsetBufferFlush(void);
|
||
|
RtCharset *RtCharsetSetColors(RtCharset * charSet, const RwRGBA * foreGround, const RwRGBA * backGround);
|
||
|
RtCharset *RtCharsetGetDesc(RtCharset * charset, RtCharsetDesc * desc);
|
||
|
RtCharset *RtCharsetCreate(const RwRGBA * foreGround, const RwRGBA * backGround);
|
||
|
RwBool RtCharsetDestroy(RtCharset * charSet);
|