#ifndef DRAWTEXT_UTILIEIES_H_ #define DRAWTEXT_UTILIEIES_H_ #include #include #include "Graphics/ColourValue.h" #include "UI/UIAlignment.h" #include "UI/DrawText.h" namespace DrawTextUtilities { extern const c32 TextWhite; extern const c32 TextWhiteDisabled; extern const c32 TextBlue; extern const c32 TextBlueDisabled; extern const c32 TextRed; extern const c32 TextRedDisabled; extern const c32 TextGreen; extern const c32 TextYellow; void WrapText(CDrawText::EFont font, s32 width, const char *p_str, u32 length, std::vector &lengths, bool &match); } #endif