Events
This commit is contained in:
@@ -19,7 +19,7 @@ namespace CMEvent {
|
||||
msg->Release();
|
||||
}
|
||||
|
||||
operator std::string() const { return "CMEvent::DataRecievedEvent"; }
|
||||
operator std::string() const override { return "CMEvent::DataRecievedEvent"; }
|
||||
|
||||
ISteamNetworkingMessage* msg;
|
||||
|
||||
@@ -33,7 +33,7 @@ namespace CMEvent {
|
||||
|
||||
DataSentEvent(ISteamNetworkingMessage* m) : msg(m) {}
|
||||
|
||||
operator std::string() const { return "CMEvent::DataSentEvent"; }
|
||||
operator std::string() const override { return "CMEvent::DataSentEvent"; }
|
||||
|
||||
ISteamNetworkingMessage* msg;
|
||||
};
|
||||
@@ -46,7 +46,7 @@ namespace CMEvent {
|
||||
|
||||
ConnectionStatusChangedEvent(SteamNetConnectionStatusChangedCallback_t* i) : info(i) {}
|
||||
|
||||
operator std::string() const { return "CMEvent::ConnectionStatusChangedEvent"; }
|
||||
operator std::string() const override { return "CMEvent::ConnectionStatusChangedEvent"; }
|
||||
|
||||
SteamNetConnectionStatusChangedCallback_t* info;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user