| 68 | // Helper functions to construct string flags |
| 69 | inline int SF(bool selected = false) { return (int)PrintStringFlags::Outline | (selected ? (int)PrintStringFlags::Blink : 0); } |
| 70 | inline int SF_Center(bool selected = false) { return (int)PrintStringFlags::Outline | (int)PrintStringFlags::Center | (selected ? (int)PrintStringFlags::Blink : 0); } |
| 71 | |
| 72 | // Helper functions to get specific generic strings |
| 73 | inline const std::string Str_Enabled(bool enabled = false) { return g_GameFlow->GetString(enabled ? STRING_ENABLED : STRING_DISABLED); } |
no outgoing calls
no test coverage detected