1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 10:53:51 +00:00
openmw-tes3mp/components/openmw-mp/Packets/Player/PacketHandshake.hpp

25 lines
526 B
C++
Raw Normal View History

//
// Created by koncord on 28.04.16.
//
#ifndef OPENMW_PACKETHANDSHAKE_HPP
#define OPENMW_PACKETHANDSHAKE_HPP
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
namespace mwmp
{
2016-10-17 12:54:36 +00:00
class PacketHandshake : public PlayerPacket
{
public:
PacketHandshake(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *bs, bool send);
const static uint32_t maxNameLen = 256;
const static uint32_t maxPasswLen = 256;
};
}
#endif //OPENMW_PACKETHANDSHAKE_HPP