mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 04:19:55 +00:00
24 lines
474 B
C++
24 lines
474 B
C++
|
//
|
||
|
// Created by koncord on 13.01.16.
|
||
|
//
|
||
|
|
||
|
#ifndef OPENMW_PACKETCREATEPROJECTILE_HPP
|
||
|
#define OPENMW_PACKETCREATEPROJECTILE_HPP
|
||
|
|
||
|
|
||
|
#include <components/openmw-mp/Packets/BasePacket.hpp>
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class PacketCreateProjectile : public BasePacket
|
||
|
{
|
||
|
public:
|
||
|
PacketCreateProjectile(RakNet::RakPeerInterface *peer);
|
||
|
|
||
|
virtual void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif //OPENMW_PACKETCREATEPROJECTILE_HPP
|