mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-11-02 09:16:03 +03:00
15 lines
571 B
C++
15 lines
571 B
C++
#ifndef CLIENT_CLIENT_REALM_RESPONSE_ADAPTER_HPP
|
|
#define CLIENT_CLIENT_REALM_RESPONSE_ADAPTER_HPP
|
|
|
|
#include "net/Connection.hpp"
|
|
|
|
class ClientRealmResponseAdapter : public RealmResponse {
|
|
public:
|
|
// Virtual member functions
|
|
virtual void HandleAuthResponse(RealmConnection* realmConnection, uint8_t authResult);
|
|
virtual void CharacterListReceived(RealmConnection* realmConnection, void* a2, int32_t success);
|
|
virtual void GameServerResult(RealmConnection* realmConnection, const char* a2, const char* a3, const char* a4) {};
|
|
};
|
|
|
|
#endif
|