mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-05 00:49:48 -03:00
Reorganized and cleaned up the solution.
This commit is contained in:
13
Include/Network/Event/NotifyInstantMessage.hpp
Normal file
13
Include/Network/Event/NotifyInstantMessage.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "../GenericNetMessage.hpp"
|
||||
|
||||
class NotifyInstantMessage : public GenericMessage {
|
||||
private:
|
||||
std::wstring m_message;
|
||||
std::wstring m_chatHandle;
|
||||
|
||||
public:
|
||||
NotifyInstantMessage( std::wstring chatHandle, std::wstring message );
|
||||
void Serialize(ByteBuffer &out) const override;
|
||||
};
|
||||
Reference in New Issue
Block a user