mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:19:55 +00:00
24 lines
489 B
C++
24 lines
489 B
C++
//
|
|
// Created by koncord on 12.01.16.
|
|
//
|
|
|
|
#ifndef OPENMW_PACKETSENDMYID_HPP
|
|
#define OPENMW_PACKETSENDMYID_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketSendMyID : public PlayerPacket
|
|
{
|
|
public:
|
|
PacketSendMyID(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
|
{
|
|
packetID = ID_USER_MYID;
|
|
}
|
|
};
|
|
}
|
|
|
|
|
|
#endif //OPENMW_PACKETSENDMYID_HPP
|