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 virtual void setItem(int modelSlot, ::ItemStack const& item) /*override*/;
18
19 virtual void serverInitItemStackIds(
20 int containerSlot,
21 int count,
22 ::std::function<void(int, ::ItemStack const&)> onNetIdChanged
23 ) /*override*/;
24
25 virtual ~ClientScratchContainer() /*override*/ = default;
26 // NOLINTEND
27
28public:
29 // virtual function thunks
30 // NOLINTBEGIN
31#ifdef LL_PLAT_C
32 MCNAPI void $setItem(int modelSlot, ::ItemStack const& item);
33
34 MCNAPI void $serverInitItemStackIds(
35 int containerSlot,
36 int count,
37 ::std::function<void(int, ::ItemStack const&)> onNetIdChanged
38 );
39#endif
40
41
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCNAPI static void** $vftable();
48 // NOLINTEND
49};
Definition ClientScratchContainer.h:13
static MCAPI void ** $vftable()
Definition ItemStack.h:26
Definition SimpleContainer.h:14