openmw-tes3coop/components/openmw-mp/Packets/Player/PacketPlayerAttack.hpp

23 lines
444 B
C++
Raw Normal View History

//
// Created by koncord on 13.01.16.
//
#ifndef OPENMW_PACKETPLAYERATTACK_HPP
#define OPENMW_PACKETPLAYERATTACK_HPP
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
namespace mwmp
{
class PacketPlayerAttack : public PlayerPacket
{
public:
PacketPlayerAttack(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *bs, bool send);
};
}
#endif //OPENMW_PACKETPLAYERATTACK_HPP