Remove unused PacketRotation and PacketCreateProjectile
parent
57f07813b0
commit
b65deca2ae
@ -1,18 +0,0 @@
|
||||
//
|
||||
// Created by koncord on 13.01.16.
|
||||
//
|
||||
|
||||
#include <components/openmw-mp/NetworkMessages.hpp>
|
||||
#include "PacketCreateProjectile.hpp"
|
||||
|
||||
mwmp::PacketCreateProjectile::PacketCreateProjectile(RakNet::RakPeerInterface *peer)
|
||||
{
|
||||
packetID = ID_GAME_CREATE_PROJECTILE;
|
||||
}
|
||||
|
||||
void mwmp::PacketCreateProjectile::Packet(RakNet::BitStream *bs, mwmp::BasePlayer *player, bool send)
|
||||
{
|
||||
BasePacket::Packet(bs, player, send);
|
||||
|
||||
|
||||
}
|
@ -1,23 +0,0 @@
|
||||
//
|
||||
// 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
|
@ -1,5 +0,0 @@
|
||||
//
|
||||
// Created by koncord on 15.01.16.
|
||||
//
|
||||
|
||||
#include "PacketRotation.hpp"
|
@ -1,15 +0,0 @@
|
||||
//
|
||||
// Created by koncord on 15.01.16.
|
||||
//
|
||||
|
||||
#ifndef OPENMW_PACKETROTATION_HPP
|
||||
#define OPENMW_PACKETROTATION_HPP
|
||||
|
||||
|
||||
class PacketRotation
|
||||
{
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif //OPENMW_PACKETROTATION_HPP
|
Loading…
Reference in New Issue