1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 07:49:56 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Player/PacketTime.hpp

24 lines
405 B
C++
Raw Normal View History

2016-08-30 05:24:31 +00:00
//
// Created by koncord on 30.08.16.
//
#ifndef OPENMW_TIMEPACKET_HPP
#define OPENMW_TIMEPACKET_HPP
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
2016-08-30 05:24:31 +00:00
namespace mwmp
{
2016-10-17 12:54:36 +00:00
class PacketTime : public PlayerPacket
2016-08-30 05:24:31 +00:00
{
public:
PacketTime(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *bs, bool send);
2016-08-30 05:24:31 +00:00
};
}
#endif //OPENMW_TIMEPACKET_HPP