mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-04 16:49:47 -03:00
Reorganized and cleaned up the solution.
This commit is contained in:
14
Include/Network/Event/NotifyRoomMessage.hpp
Normal file
14
Include/Network/Event/NotifyRoomMessage.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user