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-02-04 12:25:43 +00:00
|
|
|
class PacketPlayerSkill : 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-03-06 09:44:08 +00:00
|
|
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
2016-01-12 03:41:44 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-02-04 12:25:43 +00:00
|
|
|
#endif //OPENMW_PACKETPLAYERSKILL_HPP
|