feat(net): handle SMSG_AUTH_RESPONSE

This commit is contained in:
fallenoak 2023-04-03 18:00:18 -05:00
parent 6479dcaecf
commit e18afec28d
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
5 changed files with 115 additions and 2 deletions

View file

@ -3,6 +3,9 @@
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