1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 21:23:52 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Player/PacketLoaded.hpp

24 lines
466 B
C++
Raw Normal View History

2016-09-18 03:46:49 +00:00
//
// Created by koncord on 17.09.16.
//
#ifndef OPENMW_PACKETLOADED_HPP
#define OPENMW_PACKETLOADED_HPP
#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;
orderChannel = CHANNEL_SYSTEM;
2016-09-18 03:46:49 +00:00
}
};
}
#endif //OPENMW_PACKETLOADED_HPP