LeviLamina
Loading...
Searching...
No Matches
PlayerContainerSetter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/inventory/network/IPlayerContainerSetter.h"
7
8// auto generated forward declare list
9// clang-format off
10class ItemStack;
11class Player;
12// clang-format on
13
14class PlayerContainerSetter : public ::IPlayerContainerSetter {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::Player&> mPlayer;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 PlayerContainerSetter& operator=(PlayerContainerSetter const&);
24 PlayerContainerSetter(PlayerContainerSetter const&);
25 PlayerContainerSetter();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ~PlayerContainerSetter() /*override*/ = default;
31
32 virtual void setArmor(int slot, ::ItemStack const& item) /*override*/;
33
34 virtual void setOffhandSlot(::ItemStack const& item) /*override*/;
35
36 virtual void setPlayerUIItem(int slot, ::ItemStack const& item) /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCNAPI explicit PlayerContainerSetter(::Player& player);
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCNAPI void* $ctor(::Player& player);
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54 MCNAPI void $setArmor(int slot, ::ItemStack const& item);
55
56 MCNAPI void $setOffhandSlot(::ItemStack const& item);
57
58 MCNAPI void $setPlayerUIItem(int slot, ::ItemStack const& item);
59
60
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCNAPI static void** $vftable();
67 // NOLINTEND
68};
Definition IPlayerContainerSetter.h:10
Definition ItemStack.h:35
MCAPI void * $ctor(::Player &player)
MCAPI PlayerContainerSetter(::Player &player)
static MCAPI void ** $vftable()
MCAPI void $setPlayerUIItem(int slot, ::ItemStack const &item)
MCAPI void $setOffhandSlot(::ItemStack const &item)
MCAPI void $setArmor(int slot, ::ItemStack const &item)
Definition Player.h:137