| 206 | } |
| 207 | |
| 208 | SDrawStaticStruct* CUI::AddInfoMessage(LPCSTR message) |
| 209 | { |
| 210 | SDrawStaticStruct* ss = pUIGame->GetCustomStatic(message); |
| 211 | if (!ss) |
| 212 | { |
| 213 | ss = pUIGame->AddCustomStatic(message, true); |
| 214 | } |
| 215 | return ss; |
| 216 | } |
| 217 | |
| 218 | void CUI::ShowGameIndicators() { m_bShowGameIndicators = true; } |
| 219 |
no test coverage detected