LeviLamina
Loading...
Searching...
No Matches
PlayerUIContainerModel.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/PlayerUIContainerModelBase.h"
8
9// auto generated forward declare list
10// clang-format off
11class Player;
12// clang-format on
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 1
19 virtual ~PlayerUIContainerModel() /*override*/ = default;
20
21 // vIndex: 22
22 virtual int _getContainerOffset() const /*override*/;
23 // NOLINTEND
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI PlayerUIContainerModel(::ContainerEnumName containerName, ::Player& player);
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34 MCAPI void* $ctor(::ContainerEnumName containerName, ::Player& player);
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCAPI int $_getContainerOffset() const;
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCAPI static void** $vftable();
53 // NOLINTEND
54};
Definition PlayerUIContainerModelBase.h:15
Definition PlayerUIContainerModel.h:14
Definition Player.h:119