LeviLamina
Loading...
Searching...
No Matches
ArmorContainerModel.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 ~ArmorContainerModel() /*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) /*override*/;
42
43 // vIndex: 14
44 virtual bool isValid() /*override*/;
45
46 // vIndex: 7
47 virtual ::ContainerWeakRef getContainerWeakRef() const /*override*/;
48
49 // vIndex: 21
50 virtual ::Container* _getContainer() const /*override*/;
51
52 // vIndex: 24
53 virtual void _onItemChanged(int modelSlot, ::ItemStack const& oldItem, ::ItemStack const& newItem) /*override*/;
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59
60 // NOLINTEND
61
62public:
63 // virtual function thunks
64 // NOLINTBEGIN
65
66 // NOLINTEND
67};
Definition ArmorContainerModel.h:15
Definition ContainerModel.h:22
Definition ContainerWeakRef.h:5
Definition Container.h:30
Definition ItemStack.h:25
Definition Alias.h:14