mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
12 lines
380 B
C++
12 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
|