mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
24 lines
608 B
C++
24 lines
608 B
C++
#ifndef NET_CONNECTION_REALM_CONNECTION_HPP
|
|
#define NET_CONNECTION_REALM_CONNECTION_HPP
|
|
|
|
#include "net/connection/NetClient.hpp"
|
|
#include <cstdint>
|
|
|
|
class CDataStore;
|
|
class RealmResponse;
|
|
|
|
class RealmConnection : public NetClient {
|
|
public:
|
|
// Static functions
|
|
int32_t static MessageHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg);
|
|
|
|
// Member variables
|
|
RealmResponse* m_realmResponse;
|
|
|
|
// Member functions
|
|
RealmConnection(RealmResponse* realmResponse);
|
|
void SetSelectedRealm(uint32_t a2, uint32_t a3, uint32_t a4);
|
|
};
|
|
|
|
#endif
|