openmw-tes3coop/components/openmw-mp/Packets/Player/PacketLoaded.hpp

23 lines
423 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;
}
};
}
#endif //OPENMW_PACKETLOADED_HPP