2023-01-02 13:17:18 -06:00
|
|
|
#ifndef UI_UTIL_HPP
|
|
|
|
|
#define UI_UTIL_HPP
|
|
|
|
|
|
|
|
|
|
#include "gx/Types.hpp"
|
|
|
|
|
#include "ui/Types.hpp"
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
2023-01-04 17:25:03 -06:00
|
|
|
const char* LanguageProcess(const char* string);
|
2023-01-02 13:17:18 -06:00
|
|
|
|
2023-01-04 17:25:03 -06:00
|
|
|
int32_t StringToBlendMode(const char* string, EGxBlend& blend);
|
2023-01-02 13:17:18 -06:00
|
|
|
|
2023-01-04 17:25:03 -06:00
|
|
|
int32_t StringToFramePoint(const char* string, FRAMEPOINT& point);
|
2023-01-02 13:17:18 -06:00
|
|
|
|
2023-01-04 17:25:03 -06:00
|
|
|
int32_t StringToFrameStrata(const char* string, FRAME_STRATA& strata);
|
2023-01-02 13:17:18 -06:00
|
|
|
|
|
|
|
|
#endif
|