[General] Rename PacketActorFrame into PacketActorTest
parent
a5d0486c82
commit
174f316787
@ -1,17 +0,0 @@
|
|||||||
#ifndef OPENMW_PACKETACTORFRAME_HPP
|
|
||||||
#define OPENMW_PACKETACTORFRAME_HPP
|
|
||||||
|
|
||||||
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
|
|
||||||
|
|
||||||
namespace mwmp
|
|
||||||
{
|
|
||||||
class PacketActorFrame : public ActorPacket
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
PacketActorFrame(RakNet::RakPeerInterface *peer);
|
|
||||||
|
|
||||||
virtual void Packet(RakNet::BitStream *bs, bool send);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif //OPENMW_PACKETACTORFRAME_HPP
|
|
@ -1,15 +1,15 @@
|
|||||||
#include <components/openmw-mp/NetworkMessages.hpp>
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||||||
#include <components/openmw-mp/Log.hpp>
|
#include <components/openmw-mp/Log.hpp>
|
||||||
#include "PacketActorFrame.hpp"
|
#include "PacketActorTest.hpp"
|
||||||
|
|
||||||
using namespace mwmp;
|
using namespace mwmp;
|
||||||
|
|
||||||
PacketActorFrame::PacketActorFrame(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
|
PacketActorTest::PacketActorTest(RakNet::RakPeerInterface *peer) : ActorPacket(peer)
|
||||||
{
|
{
|
||||||
packetID = ID_ACTOR_FRAME;
|
packetID = ID_ACTOR_TEST;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PacketActorFrame::Packet(RakNet::BitStream *bs, bool send)
|
void PacketActorTest::Packet(RakNet::BitStream *bs, bool send)
|
||||||
{
|
{
|
||||||
ActorPacket::Packet(bs, send);
|
ActorPacket::Packet(bs, send);
|
||||||
|
|
@ -0,0 +1,17 @@
|
|||||||
|
#ifndef OPENMW_PACKETACTORTEST_HPP
|
||||||
|
#define OPENMW_PACKETACTORTEST_HPP
|
||||||
|
|
||||||
|
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
|
||||||
|
|
||||||
|
namespace mwmp
|
||||||
|
{
|
||||||
|
class PacketActorTest : public ActorPacket
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
PacketActorTest(RakNet::RakPeerInterface *peer);
|
||||||
|
|
||||||
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif //OPENMW_PACKETACTORTEST_HPP
|
Loading…
Reference in New Issue