Codechange: Use override keyword in networking classes.

This commit is contained in:
2019-03-24 16:24:06 +00:00
committed by Charles Pigott
parent b1fb3f4fb8
commit 07de9d6c3f
14 changed files with 90 additions and 90 deletions

View File

@@ -40,7 +40,7 @@ public:
*/
bool IsConnected() const { return this->sock != INVALID_SOCKET; }
virtual NetworkRecvStatus CloseConnection(bool error = true);
NetworkRecvStatus CloseConnection(bool error = true) override;
virtual void SendPacket(Packet *packet);
SendPacketsState SendPackets(bool closing_down = false);