mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
19 lines
424 B
C++
19 lines
424 B
C++
#ifndef OPENMW_PACKETLOADED_HPP
|
|
#define OPENMW_PACKETLOADED_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketLoaded : public PlayerPacket
|
|
{
|
|
public:
|
|
PacketLoaded(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
|
{
|
|
packetID = ID_LOADED;
|
|
orderChannel = CHANNEL_SYSTEM;
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETLOADED_HPP
|