openmw-tes3coop/components/openmw-mp/Packets/Player/PacketPlayerEquipment.hpp
David Cernat 502751cae0 Merge pull request #413 from TES3MP/0.6.3 while resolving conflicts
Conflicts:
	apps/openmw-mp/processors/player/ProcessorPlayerCellChange.hpp
	components/openmw-mp/Base/BasePlayer.hpp
	components/openmw-mp/Packets/Player/PacketPlayerEquipment.hpp
	components/openmw-mp/Packets/Player/PacketPlayerSkill.cpp
2018-04-29 06:46:28 +03:00

22 lines
525 B
C++

//
// Created by koncord on 07.01.16.
//
#ifndef OPENMW_PACKETPLAYEREQUIPMENT_HPP
#define OPENMW_PACKETPLAYEREQUIPMENT_HPP
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
namespace mwmp
{
class PacketPlayerEquipment final: public PlayerPacket
{
public:
PacketPlayerEquipment(RakNet::RakPeerInterface *peer);
void Packet(RakNet::BitStream *bs, bool send) override;
void ExchangeItemInformation(Item &item, bool send);
};
}
#endif //OPENMW_PACKETPLAYEREQUIPMENT_HPP