2016-01-12 03:41:44 +00:00
|
|
|
//
|
|
|
|
// Created by koncord on 17.03.16.
|
|
|
|
//
|
|
|
|
|
2017-02-04 12:25:43 +00:00
|
|
|
#ifndef OPENMW_PACKETPLAYERSKILL_HPP
|
|
|
|
#define OPENMW_PACKETPLAYERSKILL_HPP
|
2016-01-12 03:41:44 +00:00
|
|
|
|
2016-10-19 16:37:10 +00:00
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
2016-01-12 03:41:44 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2017-12-09 02:13:14 +00:00
|
|
|
class PacketPlayerSkill final: public PlayerPacket
|
2016-01-12 03:41:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-09-30 04:15:59 +00:00
|
|
|
const static int SkillCount = 27;
|
|
|
|
const static int AttributeCount = 8;
|
2017-02-04 12:25:43 +00:00
|
|
|
PacketPlayerSkill(RakNet::RakPeerInterface *peer);
|
2016-01-12 03:41:44 +00:00
|
|
|
|
2017-12-09 02:13:14 +00:00
|
|
|
void Packet(RakNet::BitStream *bs, bool send) override;
|
2016-01-12 03:41:44 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-02-04 12:25:43 +00:00
|
|
|
#endif //OPENMW_PACKETPLAYERSKILL_HPP
|