mirror of https://github.com/AxioDL/metaforce.git
25 lines
546 B
C++
25 lines
546 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include "Runtime/RetroTypes.hpp"
|
|
#include "Runtime/GuiSys/CGuiTextSupport.hpp"
|
|
|
|
namespace metaforce {
|
|
|
|
class CDrawStringOptions {
|
|
friend class CColorOverrideInstruction;
|
|
friend class CFontRenderState;
|
|
friend class CRasterFont;
|
|
friend class CTextExecuteBuffer;
|
|
friend class CBlockInstruction;
|
|
friend class CWordInstruction;
|
|
|
|
ETextDirection x0_direction = ETextDirection::Horizontal;
|
|
std::vector<CTextColor> x4_colors;
|
|
|
|
public:
|
|
CDrawStringOptions() : x4_colors(16) {}
|
|
};
|
|
|
|
} // namespace metaforce
|