implement status messages

This commit is contained in:
Eduardo Bart
2011-08-30 12:12:57 -03:00
parent 4d90b674ac
commit 27ccb472d2
9 changed files with 57 additions and 14 deletions

View File

@@ -97,6 +97,11 @@ void Game::processLogout()
}
}
void Game::processTextMessage(const std::string& message)
{
g_lua.callGlobalField("Game","onTextMessage", message);
}
void Game::walk(Otc::Direction direction)
{