[General] Rename GameTime packet into WorldTime
parent
296c69d788
commit
da66face25
@ -1,17 +0,0 @@
|
|||||||
#ifndef OPENMW_PACKETGAMETIME_HPP
|
|
||||||
#define OPENMW_PACKETGAMETIME_HPP
|
|
||||||
|
|
||||||
#include <components/openmw-mp/Packets/Worldstate/WorldstatePacket.hpp>
|
|
||||||
|
|
||||||
namespace mwmp
|
|
||||||
{
|
|
||||||
class PacketGameTime : public WorldstatePacket
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
PacketGameTime(RakNet::RakPeerInterface *peer);
|
|
||||||
|
|
||||||
virtual void Packet(RakNet::BitStream *bs, bool send);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif //OPENMW_PACKETGAMETIME_HPP
|
|
@ -1,15 +1,15 @@
|
|||||||
#include "PacketGameTime.hpp"
|
#include "PacketWorldTime.hpp"
|
||||||
#include <components/openmw-mp/NetworkMessages.hpp>
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||||||
|
|
||||||
using namespace mwmp;
|
using namespace mwmp;
|
||||||
|
|
||||||
PacketGameTime::PacketGameTime(RakNet::RakPeerInterface *peer) : WorldstatePacket(peer)
|
PacketWorldTime::PacketWorldTime(RakNet::RakPeerInterface *peer) : WorldstatePacket(peer)
|
||||||
{
|
{
|
||||||
packetID = ID_GAME_TIME;
|
packetID = ID_WORLD_TIME;
|
||||||
orderChannel = CHANNEL_SYSTEM;
|
orderChannel = CHANNEL_SYSTEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PacketGameTime::Packet(RakNet::BitStream *bs, bool send)
|
void PacketWorldTime::Packet(RakNet::BitStream *bs, bool send)
|
||||||
{
|
{
|
||||||
WorldstatePacket::Packet(bs, send);
|
WorldstatePacket::Packet(bs, send);
|
||||||
|
|
@ -0,0 +1,17 @@
|
|||||||
|
#ifndef OPENMW_PACKETWORLDTIME_HPP
|
||||||
|
#define OPENMW_PACKETWORLDTIME_HPP
|
||||||
|
|
||||||
|
#include <components/openmw-mp/Packets/Worldstate/WorldstatePacket.hpp>
|
||||||
|
|
||||||
|
namespace mwmp
|
||||||
|
{
|
||||||
|
class PacketWorldTime : public WorldstatePacket
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
PacketWorldTime(RakNet::RakPeerInterface *peer);
|
||||||
|
|
||||||
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif //OPENMW_PACKETWORLDTIME_HPP
|
Loading…
Reference in New Issue