mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-22 18:53:50 +00:00
11 lines
258 B
C++
11 lines
258 B
C++
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
#include "PacketObjectState.hpp"
|
||
|
|
||
|
using namespace mwmp;
|
||
|
|
||
|
PacketObjectState::PacketObjectState(RakNet::RakPeerInterface *peer) : WorldPacket(peer)
|
||
|
{
|
||
|
packetID = ID_OBJECT_STATE;
|
||
|
hasCellData = true;
|
||
|
}
|