1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 01:49:54 +00:00
openmw-tes3mp/components/openmw-mp/Packets/PacketEquiped.hpp
2016-07-07 23:50:48 +08:00

21 lines
433 B
C++

//
// Created by koncord on 07.01.16.
//
#ifndef OPENMW_PACKETCONTAINER_HPP
#define OPENMW_PACKETCONTAINER_HPP
#include <components/openmw-mp/Packets/BasePacket.hpp>
namespace mwmp
{
class PacketEquiped : public BasePacket
{
public:
PacketEquiped(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send);
};
}
#endif //OPENMW_PACKETCONTAINER_HPP