mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-24 06:23:52 +00:00
11 lines
267 B
C++
11 lines
267 B
C++
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||
|
#include "PacketObjectRestock.hpp"
|
||
|
|
||
|
using namespace mwmp;
|
||
|
|
||
|
PacketObjectRestock::PacketObjectRestock(RakNet::RakPeerInterface *peer) : ObjectPacket(peer)
|
||
|
{
|
||
|
packetID = ID_OBJECT_RESTOCK;
|
||
|
hasCellData = true;
|
||
|
}
|