mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-15 15:11:20 +00:00
16 lines
301 B
C++
16 lines
301 B
C++
#ifndef _CGUITEXTSUPPORT
|
|
#define _CGUITEXTSUPPORT
|
|
|
|
#include "rstl/string.hpp"
|
|
|
|
class CColor;
|
|
|
|
class CGuiTextSupport {
|
|
public:
|
|
void SetText(const rstl::string&, bool multipage = false);
|
|
void SetOutlineColor(const CColor& col);
|
|
void SetFontColor(const CColor& col);
|
|
};
|
|
|
|
#endif // _CGUITEXTSUPPORT
|