LeviLamina
Loading...
Searching...
No Matches
SimplePlayerContainer.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;
11class Player;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::Player&> mPlayer;
19 // NOLINTEND
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 // vIndex: 0
25 virtual ~SimplePlayerContainer() /*override*/ = default;
26
27 // vIndex: 7
28 virtual ::ItemStack const& getItem(int slot) const /*override*/;
29
30 // vIndex: 12
31 virtual void setItem(int modelSlot, ::ItemStack const& item) /*override*/;
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCAPI ::ItemStack const& $getItem(int slot) const;
44
45 MCAPI void $setItem(int modelSlot, ::ItemStack const& item);
46 // NOLINTEND
47
48public:
49 // vftables
50 // NOLINTBEGIN
51 MCAPI static void** $vftable();
52 // NOLINTEND
53};
Definition ItemStack.h:25
Definition Player.h:119
Definition SimpleContainer.h:14
Definition SimplePlayerContainer.h:14