mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-04 08:49:47 -03:00
14 lines
342 B
C++
14 lines
342 B
C++
#pragma once
|
|
|
|
#include "../GenericNetMessage.h"
|
|
|
|
class NotifyReserveUserSlot_RTA : public GenericMessage {
|
|
private:
|
|
std::string m_discoveryAddr;
|
|
int32_t m_port;
|
|
int32_t m_memberId;
|
|
|
|
public:
|
|
NotifyReserveUserSlot_RTA( int32_t memberId, std::string discoveryAddr, int32_t discoveryPort );
|
|
void Serialize(ByteBuffer &out) const override;
|
|
}; |