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