mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
11 lines
380 B
C++
11 lines
380 B
C++
#ifndef NET_CONNECTION_REALM_RESPONSE_HPP
|
|
#define NET_CONNECTION_REALM_RESPONSE_HPP
|
|
|
|
class RealmResponse {
|
|
public:
|
|
// Virtual member functions
|
|
virtual void HandleAuthResponse(RealmConnection* connection, uint8_t authResult) = 0;
|
|
virtual void GameServerResult(RealmConnection* connection, const char* a3, const char* a4, const char* a5) = 0;
|
|
};
|
|
|
|
#endif
|