(svn r25593) -Cleanup: remove a few stale #defines

This commit is contained in:
rubidium
2013-07-13 06:18:16 +00:00
parent 81ce9ad189
commit e6ae8cf420
3 changed files with 0 additions and 18 deletions

View File

@@ -56,12 +56,6 @@ NetworkRecvStatus NetworkGameSocketHandler::CloseConnection(bool error)
}
/**
* Defines a simple (switch) case for each network packet
* @param type the packet type to create the case for
*/
#define GAME_COMMAND(type) case type: return this->NetworkPacketReceive_ ## type ## _command(p); break;
/**
* Handle the given packet, i.e. pass it to the right parser receive command.
* @param p the packet to handle