1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 00:49:54 +00:00
openmw-tes3mp/components/openmw-mp/Packets/PacketLoaded.hpp
2016-09-18 11:55:51 +08:00

22 lines
410 B
C++

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