TrinityCore
Loading...
Searching...
No Matches
EquipmentSetPackets.h
Go to the documentation of this file.
1/*
2 * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef TRINITYCORE_EQUIPMENT_SET_PACKETS_H
19#define TRINITYCORE_EQUIPMENT_SET_PACKETS_H
20
21#include "Packet.h"
22#include "EquipmentSet.h"
23#include "ItemPacketsCommon.h"
24
25namespace WorldPackets
26{
27 namespace EquipmentSet
28 {
29 class EquipmentSetID final : public ServerPacket
30 {
31 public:
33
34 WorldPacket const* Write() override;
35
39 };
40
41 class LoadEquipmentSet final : public ServerPacket
42 {
43 public:
45
46 WorldPacket const* Write() override;
47
48 std::vector<EquipmentSetInfo::EquipmentSetData const*> SetData;
49 };
50
51 class SaveEquipmentSet final : public ClientPacket
52 {
53 public:
54 explicit SaveEquipmentSet(WorldPacket&& packet) : ClientPacket(CMSG_SAVE_EQUIPMENT_SET, std::move(packet)) { }
55
56 void Read() override;
57
59 };
60
61 class DeleteEquipmentSet final : public ClientPacket
62 {
63 public:
65
66 void Read() override;
67
69 };
70
89
91 {
92 public:
94
95 WorldPacket const* Write() override;
96
99 };
100 }
101}
102
103#endif // TRINITYCORE_EQUIPMENT_SET_PACKETS_H
uint8_t uint8
Definition Define.h:156
int32_t int32
Definition Define.h:150
uint64_t uint64
Definition Define.h:153
uint32_t uint32
Definition Define.h:154
#define EQUIPMENT_SET_SLOTS
@ SMSG_USE_EQUIPMENT_SET_RESULT
Definition Opcodes.h:2435
@ SMSG_LOAD_EQUIPMENT_SET
Definition Opcodes.h:1814
@ SMSG_EQUIPMENT_SET_ID
Definition Opcodes.h:1445
@ CMSG_DELETE_EQUIPMENT_SET
Definition Opcodes.h:317
@ CMSG_SAVE_EQUIPMENT_SET
Definition Opcodes.h:876
@ CMSG_USE_EQUIPMENT_SET
Definition Opcodes.h:1028
std::vector< EquipmentSetInfo::EquipmentSetData const * > SetData
EquipmentSetInfo::EquipmentSetData Set
STL namespace.
Data sent in EquipmentSet related packets.