2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 03:51:21 +00:00
metaforce/Runtime/GuiSys/CDrawStringOptions.hpp
Lioncash 06789d1860 General: Normalize several headers' include paths
Normalizes the include paths and makes them consistent. Also adds any
missing includes relevant to the interface.
2019-09-22 20:36:33 -04:00

25 lines
543 B
C++

#pragma once
#include <vector>
#include "Runtime/RetroTypes.hpp"
#include "Runtime/GuiSys/CGuiTextSupport.hpp"
namespace urde {
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.resize(16); }
};
} // namespace urde