mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-04 16:49:47 -03:00
16 lines
321 B
C++
16 lines
321 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "../GenericNetMessage.hpp"
|
|
#include "Common/ForwardDecl.hpp"
|
|
|
|
class NotifyClientDiscovered : public GenericMessage {
|
|
private:
|
|
std::string m_clientIp;
|
|
int32_t m_clientPort;
|
|
|
|
public:
|
|
NotifyClientDiscovered( sptr_user user );
|
|
void Serialize( ByteBuffer &out ) const override;
|
|
}; |