mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-14 20:12:29 +00:00
chore: initial commit
This commit is contained in:
commit
70b00c5c38
965 changed files with 264882 additions and 0 deletions
20
src/net/grunt/ClientResponse.hpp
Normal file
20
src/net/grunt/ClientResponse.hpp
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#ifndef NET_GRUNT_CLIENT_RESPONSE_HPP
|
||||
#define NET_GRUNT_CLIENT_RESPONSE_HPP
|
||||
|
||||
#include "net/grunt/Grunt.hpp"
|
||||
#include "net/Types.hpp"
|
||||
|
||||
class LoginResponse;
|
||||
|
||||
class Grunt::ClientResponse {
|
||||
public:
|
||||
virtual bool Connected(const NETADDR& addr) = 0;
|
||||
virtual bool OnlineIdle() = 0;
|
||||
virtual void GetLogonMethod() = 0;
|
||||
virtual void GetRealmList() = 0;
|
||||
virtual void Logon(const char* a2, const char* a3) = 0;
|
||||
virtual void Logoff() = 0;
|
||||
virtual void Init(LoginResponse* loginResponse) = 0;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue