mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-25 11:09:39 +00:00
13 lines
336 B
C++
13 lines
336 B
C++
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
#include "PacketPlayerPlaceholder.hpp"
|
||
|
|
||
|
mwmp::PacketPlayerPlaceholder::PacketPlayerPlaceholder(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
||
|
{
|
||
|
packetID = ID_PLACEHOLDER;
|
||
|
}
|
||
|
|
||
|
void mwmp::PacketPlayerPlaceholder::Packet(RakNet::BitStream *bs, bool send)
|
||
|
{
|
||
|
// Placeholder
|
||
|
}
|