1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-20 14:23:51 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Player/PacketLoaded.hpp
Koncord 2cb0ea20f0 [General] Modernize packets
Use explicit for constructors
Use override instead virtual for inherited methods
Mark final derived classes as "final"
2017-12-09 10:13:27 +08:00

23 lines
471 B
C++

//
// Created by koncord on 17.09.16.
//
#ifndef OPENMW_PACKETLOADED_HPP
#define OPENMW_PACKETLOADED_HPP
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
namespace mwmp
{
class PacketLoaded final: public PlayerPacket
{
public:
PacketLoaded(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
{
packetID = ID_LOADED;
orderChannel = CHANNEL_SYSTEM;
}
};
}
#endif //OPENMW_PACKETLOADED_HPP