Remove unused PacketRotation and PacketCreateProjectile

This commit is contained in:
David Cernat 2016-09-28 12:37:08 +03:00
parent 57f07813b0
commit b65deca2ae
5 changed files with 0 additions and 62 deletions

View file

@ -18,7 +18,6 @@ enum GameMessages
ID_USER_MYID,
ID_GAME_EQUIPMENT,
ID_USER_DISCONNECTED,
ID_GAME_CREATE_PROJECTILE,
ID_GAME_CAST,
ID_GAME_DIE,
ID_GAME_RESURRECT,

View file

@ -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);
}

View file

@ -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

View file

@ -1,5 +0,0 @@
//
// Created by koncord on 15.01.16.
//
#include "PacketRotation.hpp"

View file

@ -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