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

13 lines
298 B
C++

#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;
};