Files
Champions-Reborn-Server-Mirror/Include/Network/Event/Notify_65.h
2026-03-02 12:37:07 +00:00

14 lines
335 B
C++

#pragma once
#include "../GenericNetMessage.h"
class NotifyClientRequestsConnect2 : public GenericMessage {
private:
std::string m_discoveryAddr;
std::string m_localAddr;
int32_t m_port;
public:
NotifyClientRequestsConnect2( std::string discoveryAddr, std::string localAddr, int32_t port );
ByteBuffer &Serialize() override;
};