Files
Champions-Reborn-Server-Mirror/Source/Network/Event/NotifyForcedLogout.cpp
2026-03-02 12:37:07 +00:00

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