openmw-tes3coop/components/openmw-mp/Packets/Worldstate/PacketGameTime.hpp

18 lines
393 B
C++
Raw Normal View History

#ifndef OPENMW_PACKETGAMETIME_HPP
#define OPENMW_PACKETGAMETIME_HPP
2016-08-30 05:24:31 +00:00
#include <components/openmw-mp/Packets/Worldstate/WorldstatePacket.hpp>
2016-08-30 05:24:31 +00:00
namespace mwmp
{
class PacketGameTime : public WorldstatePacket
2016-08-30 05:24:31 +00:00
{
public:
PacketGameTime(RakNet::RakPeerInterface *peer);
2016-08-30 05:24:31 +00:00
virtual void Packet(RakNet::BitStream *bs, bool send);
2016-08-30 05:24:31 +00:00
};
}
#endif //OPENMW_PACKETGAMETIME_HPP