thunderbrew/src/net/connection/RealmResponse.hpp

12 lines
380 B
C++
Raw Normal View History

2023-01-02 13:17:18 -06:00
#ifndef NET_CONNECTION_REALM_RESPONSE_HPP
#define NET_CONNECTION_REALM_RESPONSE_HPP
class RealmResponse {
public:
2023-04-03 18:00:18 -05:00
// 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;
2023-01-02 13:17:18 -06:00
};
#endif