2016-09-25 11:28:25 +00:00
|
|
|
//
|
|
|
|
// Created by David Cernat on 25.09.16.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef OPENMW_PACKETLEVEL_HPP
|
|
|
|
#define OPENMW_PACKETLEVEL_HPP
|
|
|
|
|
2016-10-19 16:37:10 +00:00
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
2016-09-25 11:28:25 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2016-10-17 12:54:36 +00:00
|
|
|
class PacketLevel : public PlayerPacket
|
2016-09-25 11:28:25 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PacketLevel(RakNet::RakPeerInterface *peer);
|
|
|
|
|
|
|
|
virtual void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETLEVEL_HPP
|