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