2016-09-18 03:46:49 +00:00
|
|
|
//
|
|
|
|
// Created by koncord on 17.09.16.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef OPENMW_PACKETLOADED_HPP
|
|
|
|
#define OPENMW_PACKETLOADED_HPP
|
|
|
|
|
2016-10-19 16:37:10 +00:00
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
2016-09-18 03:46:49 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2016-10-17 12:54:36 +00:00
|
|
|
class PacketLoaded : public PlayerPacket
|
2016-09-18 03:46:49 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-10-17 12:54:36 +00:00
|
|
|
PacketLoaded(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
2016-09-18 03:46:49 +00:00
|
|
|
{
|
|
|
|
packetID = ID_LOADED;
|
2017-05-08 16:38:48 +00:00
|
|
|
orderChannel = CHANNEL_SYSTEM;
|
2016-09-18 03:46:49 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETLOADED_HPP
|