LeviLamina
Loading...
Searching...
No Matches
InventoryContainerModel.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 ~InventoryContainerModel() /*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 // destructor thunk
61 // NOLINTBEGIN
62
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI void $postInit();
69
70 MCAPI void $releaseResources();
71
72 MCAPI void $containerContentChanged(int slot);
73
74 MCFOLD bool $isValid();
75
76 MCFOLD ::ContainerWeakRef $getContainerWeakRef() const;
77
78 MCAPI int $_getContainerOffset() const;
79
80 MCAPI void $_onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem);
81
82 MCFOLD ::Container* $_getContainer() const;
83 // NOLINTEND
84
85public:
86 // vftables
87 // NOLINTBEGIN
88 MCAPI static void** $vftable();
89 // NOLINTEND
90};
Definition ContainerModel.h:22
Definition ContainerWeakRef.h:5
Definition Container.h:30
Definition InventoryContainerModel.h:15
Definition ItemStack.h:25
Definition Alias.h:14