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;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual ~PlayerUIContainerModelBase() /*override*/ = default;
33
34 // vIndex: 2
35 virtual void postInit() /*override*/;
36
37 // vIndex: 3
38 virtual void releaseResources() /*override*/;
39
40 // vIndex: 0
41 virtual void containerContentChanged(int slot) /*override*/;
42
43 // vIndex: 14
44 virtual bool isValid() /*override*/;
45
46 // vIndex: 7
47 virtual ::ContainerWeakRef getContainerWeakRef() const /*override*/;
48
49 // vIndex: 22
50 virtual int _getContainerOffset() const /*override*/;
51
52 // vIndex: 24
53 virtual void _onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem) /*override*/;
54
55 // vIndex: 21
56 virtual ::Container* _getContainer() const /*override*/;
57 // NOLINTEND
58
59public:
60 // member functions
61 // NOLINTBEGIN
62 MCAPI void _refreshContainer(bool initial);
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68
69 // NOLINTEND
70
71public:
72 // virtual function thunks
73 // NOLINTBEGIN
74 MCAPI void $postInit();
75
76 MCAPI void $releaseResources();
77
78 MCAPI void $containerContentChanged(int slot);
79
80 MCFOLD bool $isValid();
81
82 MCAPI ::ContainerWeakRef $getContainerWeakRef() const;
83
84 MCFOLD int $_getContainerOffset() const;
85
86 MCAPI void $_onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem);
87
88 MCAPI ::Container* $_getContainer() const;
89 // NOLINTEND
90
91public:
92 // vftables
93 // NOLINTBEGIN
94 MCAPI static void** $vftable();
95 // NOLINTEND
96};
Definition ContainerModel.h:22
Definition ContainerWeakRef.h:5
Definition Container.h:30
Definition ItemStack.h:25
Definition PlayerUIContainerModelBase.h:15
Definition Alias.h:14