LeviLamina
Loading...
Searching...
No Matches
PlayerUIContainerModelBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/containers/models/ContainerModel.h"
7
8// auto generated forward declare list
9// clang-format off
10class Container;
12class ItemStack;
13class Player;
14// clang-format on
15
16class PlayerUIContainerModelBase : public ::ContainerModel {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::Player&> mPlayer;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 PlayerUIContainerModelBase& operator=(PlayerUIContainerModelBase const&);
26 PlayerUIContainerModelBase(PlayerUIContainerModelBase const&);
27 PlayerUIContainerModelBase();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~PlayerUIContainerModelBase() /*override*/;
33
34 virtual void postInit() /*override*/;
35
36 virtual void releaseResources() /*override*/;
37
38 virtual void containerContentChanged(int slot) /*override*/;
39
40 virtual bool isValid() /*override*/;
41
42 virtual ::ContainerWeakRef getContainerWeakRef() const /*override*/;
43
44 virtual int _getContainerOffset() const /*override*/;
45
46 virtual void _onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem) /*override*/;
47
48 virtual ::Container* _getContainer() const /*override*/;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCAPI void _refreshSlot(bool initial, int modelSlot);
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCAPI void $dtor();
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCAPI void $postInit();
67
68 MCAPI void $releaseResources();
69
70 MCAPI void $containerContentChanged(int slot);
71
72 MCFOLD bool $isValid();
73
74 MCAPI ::ContainerWeakRef $getContainerWeakRef() const;
75
76 MCFOLD int $_getContainerOffset() const;
77
78 MCAPI void $_onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem);
79
80 MCAPI ::Container* $_getContainer() const;
81
82
83 // NOLINTEND
84
85public:
86 // vftables
87 // NOLINTBEGIN
88 MCAPI static void** $vftable();
89 // NOLINTEND
90};
Definition ContainerWeakRef.h:20
Definition Container.h:34
Definition ItemStack.h:35
Definition Player.h:137