LeviLamina
Loading...
Searching...
No Matches
ClientScratchContainer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/SimpleContainer.h"
7
8// auto generated forward declare list
9// clang-format off
10class ItemStack;
11// clang-format on
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 12
18 virtual void setItem(int modelSlot, ::ItemStack const& item) /*override*/;
19
20 // vIndex: 2
21 virtual void serverInitItemStackIds(int, int, ::std::function<void(int, ::ItemStack const&)>) /*override*/;
22
23 // vIndex: 0
24 virtual ~ClientScratchContainer() /*override*/ = default;
25 // NOLINTEND
26
27public:
28 // virtual function thunks
29 // NOLINTBEGIN
30
31 // NOLINTEND
32};
Definition ClientScratchContainer.h:13
Definition ItemStack.h:25
Definition SimpleContainer.h:14