mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-04 08:49:47 -03:00
13 lines
270 B
C++
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;
|
|
}; |