mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-04 08:49:47 -03:00
16 lines
303 B
C++
16 lines
303 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "../GenericNetMessage.h"
|
|
|
|
class NotifyClientRequestConnect : public GenericMessage
|
|
{
|
|
private:
|
|
std::string m_clientIp;
|
|
int32_t m_clientPort;
|
|
|
|
public:
|
|
NotifyClientRequestConnect( std::string clientIp, int32_t clientPort );
|
|
ByteBuffer &Serialize() override;
|
|
}; |