| 102 | char g_ManifestAuthor[256] = {}; |
| 103 | |
| 104 | inline bool IsLoadedTheme() { |
| 105 | return g_ThemeFile != nullptr; |
| 106 | } |
| 107 | |
| 108 | #define IMGUI_COLOR_TO_U32(color) IM_COL32((u32)(color.Value.x * 255.0f), (u32)(color.Value.y * 255.0f), (u32)(color.Value.z * 255.0f), (u32)(color.Value.w * 255.0f)) |
| 109 |