You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
466 B
C++
24 lines
466 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 : public PlayerPacket
|
|
{
|
|
public:
|
|
PacketLoaded(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
|
{
|
|
packetID = ID_LOADED;
|
|
orderChannel = CHANNEL_SYSTEM;
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETLOADED_HPP
|