LeviLamina
Loading...
Searching...
No Matches
SparseContainerSetListenerClient.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/inventory/network/ISparseContainerSetListener.h"
7
8// auto generated forward declare list
9// clang-format off
10class Container;
11class ItemStack;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::ItemStackNetManagerClient&> mItemStackNetManager;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 0
32 virtual ~SparseContainerSetListenerClient() /*override*/ = default;
33
34 // vIndex: 1
35 virtual void preSetItem(::Container*, int, bool, ::ItemStack*) /*override*/;
36
37 // vIndex: 2
38 virtual bool postSetItem(::Container*, ::ItemStack&) /*override*/;
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44
45 // NOLINTEND
46};
Definition Container.h:30
Definition ISparseContainerSetListener.h:11
Definition ItemStackNetManagerClient.h:20
Definition ItemStack.h:25
Definition SparseContainerSetListenerClient.h:15