2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 01:11:20 +00:00
metaforce/Runtime/GuiSys/CDrawStringOptions.hpp
2016-03-19 20:37:08 -10:00

30 lines
603 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;
friend class CTextExecuteBuffer;
friend class CBlockInstruction;
ETextDirection x0_direction = ETextDirection::Horizontal;
std::vector<CTextColor> x4_vec;
public:
CDrawStringOptions()
{
x4_vec.resize(16);
}
};
}
#endif // __URDE_CDRAWSTRINGOPTIONS_HPP__