Removed unnecessary unnecessary if in Client::OnInputCommand.

Change name from Server::parseEvent to Server::parseOnInputCommand
This commit is contained in:
Jocke
2016-01-13 18:00:12 +01:00
parent f47f913bf5
commit a060640da3
5 changed files with 14 additions and 11 deletions
+2 -1
View File
@@ -81,8 +81,9 @@ private:
bool hasMappedEntity(EntityID entityID);
// Events
EventBroker* m_EventBroker;
EventRelay<Client, Events::InputCommand> m_EInputCommand;
bool OnInputCommand(const Events::InputCommand &e);
bool OnInputCommand(const Events::InputCommand& e);
};
#endif