mirror of
https://github.com/HikikoMarmy/Champions-Reborn-Server.git
synced 2026-04-05 00:49:48 -03:00
13 lines
256 B
C++
13 lines
256 B
C++
#include "Network/Event/NotifyForcedLogout.hpp"
|
|
|
|
NotifyForcedLogout::NotifyForcedLogout() : GenericMessage( 0x41 )
|
|
{
|
|
}
|
|
|
|
void NotifyForcedLogout::Serialize( ByteBuffer &out ) const
|
|
{
|
|
out.write_u16( m_packetId );
|
|
out.write_u32( 0 );
|
|
out.write_u32( 0 );
|
|
}
|