mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-04 08:49:47 -03:00
14 lines
341 B
C++
14 lines
341 B
C++
#pragma once
|
|
|
|
#include "../GenericNetMessage.hpp"
|
|
|
|
class NotifyRoomMessage : public GenericMessage {
|
|
private:
|
|
std::wstring m_message;
|
|
std::wstring m_chatHandle;
|
|
std::wstring m_roomName;
|
|
|
|
public:
|
|
NotifyRoomMessage( std::wstring roomName, std::wstring chatHandle, std::wstring message );
|
|
void Serialize(ByteBuffer &out) const override;
|
|
}; |