blob: 4dae294e12b43eccc4111a157121651967a32d1b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#pragma once
#include <string>
#include <queue>
#include "Packet.hpp"
struct Window {
unsigned char WindowId = 0;
std::string type;
SlotData handSlot;
std::vector<SlotData> slots;
short actions = 1;
void MakeClick(short ClickedSlot, bool Lmb);
std::queue<PacketClickWindow> pendingTransactions;
};
|