mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 16:19:56 +00:00
21 lines
433 B
C++
21 lines
433 B
C++
//
|
|
// Created by David Cernat on 25.09.16.
|
|
//
|
|
|
|
#ifndef OPENMW_PACKETLEVEL_HPP
|
|
#define OPENMW_PACKETLEVEL_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketLevel : public PlayerPacket
|
|
{
|
|
public:
|
|
PacketLevel(RakNet::RakPeerInterface *peer);
|
|
|
|
virtual void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETLEVEL_HPP
|