2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 00:31:21 +00:00
metaforce/Runtime/GuiSys/CDrawStringOptions.hpp
2016-03-18 17:58:01 -10:00

28 lines
485 B
C++

#ifndef __URDE_CDRAWSTRINGOPTIONS_HPP__
#define __URDE_CDRAWSTRINGOPTIONS_HPP__
#include <vector>
#include "RetroTypes.hpp"
#include "CGuiTextSupport.hpp"
namespace urde
{
class CDrawStringOptions
{
friend class CColorOverrideInstruction;
friend class CFontRenderState;
friend class CRasterFont;
u32 x0_ = 0;
std::vector<CTextColor> x4_vec;
public:
CDrawStringOptions()
{
x4_vec.resize(16);
}
};
}
#endif // __URDE_CDRAWSTRINGOPTIONS_HPP__