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

13 lines
270 B
C++

#pragma once
#include "../GenericNetMessage.hpp"
class NotifyFriendStatus : public GenericMessage {
private:
std::wstring m_handle;
bool m_status;
public:
NotifyFriendStatus( std::wstring handle, bool status );
void Serialize( ByteBuffer &out ) const override;
};