metaforce/Runtime/GuiSys/CDrawStringOptions.hpp

30 lines
603 B
C++
Raw Normal View History

2016-03-11 00:23:16 +00:00
#ifndef __URDE_CDRAWSTRINGOPTIONS_HPP__
#define __URDE_CDRAWSTRINGOPTIONS_HPP__
#include <vector>
#include "RetroTypes.hpp"
2016-03-19 03:58:01 +00:00
#include "CGuiTextSupport.hpp"
2016-03-11 00:23:16 +00:00
namespace urde
{
class CDrawStringOptions
{
2016-03-19 00:07:31 +00:00
friend class CColorOverrideInstruction;
friend class CFontRenderState;
friend class CRasterFont;
2016-03-20 06:37:08 +00:00
friend class CTextExecuteBuffer;
friend class CBlockInstruction;
ETextDirection x0_direction = ETextDirection::Horizontal;
2016-03-19 03:58:01 +00:00
std::vector<CTextColor> x4_vec;
2016-03-11 00:23:16 +00:00
public:
CDrawStringOptions()
{
x4_vec.resize(16);
}
};
}
#endif // __URDE_CDRAWSTRINGOPTIONS_HPP__