mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 00:19:56 +00:00
17 lines
467 B
C++
17 lines
467 B
C++
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include "PacketScriptLocalShort.hpp"
|
|
|
|
using namespace mwmp;
|
|
|
|
PacketScriptLocalShort::PacketScriptLocalShort(RakNet::RakPeerInterface *peer) : ObjectPacket(peer)
|
|
{
|
|
packetID = ID_SCRIPT_LOCAL_SHORT;
|
|
hasCellData = true;
|
|
}
|
|
|
|
void PacketScriptLocalShort::Object(BaseObject &baseObject, bool send)
|
|
{
|
|
ObjectPacket::Object(baseObject, send);
|
|
RW(baseObject.index, send);
|
|
RW(baseObject.shortVal, send);
|
|
}
|