thunderbrew/src/ui/Util.hpp

17 lines
371 B
C++
Raw Normal View History

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>
const char* LanguageProcess(const char* string);
2023-01-02 13:17:18 -06:00
int32_t StringToBlendMode(const char* string, EGxBlend& blend);
2023-01-02 13:17:18 -06:00
int32_t StringToFramePoint(const char* string, FRAMEPOINT& point);
2023-01-02 13:17:18 -06:00
int32_t StringToFrameStrata(const char* string, FRAME_STRATA& strata);
2023-01-02 13:17:18 -06:00
#endif