1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 00:49:54 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Player/PacketTime.hpp
2016-10-19 19:37:10 +03:00

23 lines
425 B
C++

//
// Created by koncord on 30.08.16.
//
#ifndef OPENMW_TIMEPACKET_HPP
#define OPENMW_TIMEPACKET_HPP
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
namespace mwmp
{
class PacketTime : public PlayerPacket
{
public:
PacketTime(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send);
};
}
#endif //OPENMW_TIMEPACKET_HPP