1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 20:49:56 +00:00
openmw-tes3mp/components/openmw-mp/Packets/PacketSkill.hpp
2016-07-07 23:50:48 +08:00

25 lines
462 B
C++

//
// Created by koncord on 17.03.16.
//
#ifndef OPENMW_PACKETSKILL_HPP
#define OPENMW_PACKETSKILL_HPP
#include <components/openmw-mp/Packets/BasePacket.hpp>
namespace mwmp
{
class PacketSkill : public BasePacket
{
public:
const static int StatsCount = 27;
PacketSkill(RakNet::RakPeerInterface *peer);
virtual void Packet(RakNet::BitStream *bs, BasePlayer *player, bool send);
};
}
#endif //OPENMW_PACKETSKILL_HPP