MCPcopy Create free account
hub / github.com/ddnet/ddnet / ShowMessageBox

Method ShowMessageBox

src/engine/client/client.cpp:5322–5330  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5320#endif
5321
5322std::optional<int> CClient::ShowMessageBox(const IGraphics::CMessageBox &MessageBox)
5323{
5324 std::optional<int> Result = m_pGraphics == nullptr ? std::nullopt : m_pGraphics->ShowMessageBox(MessageBox);
5325 if(!Result)
5326 {
5327 Result = ShowMessageBoxWithoutGraphics(MessageBox);
5328 }
5329 return Result;
5330}
5331
5332void CClient::GetGpuInfoString(char (&aGpuInfo)[512])
5333{

Callers 1

mainFunction · 0.45

Calls 1

Tested by

no test coverage detected