1
0
Fork 0

Game: add getMessageHandler() method.

This commit is contained in:
Henrik Hautakoski 2020-01-30 23:55:26 +01:00
parent a30fd37032
commit 81b64e18d4
No known key found for this signature in database
GPG key ID: 96765B12FEAC4745
2 changed files with 7 additions and 0 deletions

View file

@ -111,4 +111,9 @@ FPSCounter& Game::getFpsCounter()
return m_fpsCounter;
}
MessageHandler* Game::getMessageHandler() const
{
return m_messageHandler;
}
}