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
16class HudContainerModel : public ::ContainerModel {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::Player&> mPlayer;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 HudContainerModel& operator=(HudContainerModel const&);
26 HudContainerModel(HudContainerModel const&);
27 HudContainerModel();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~HudContainerModel() /*override*/ = default;
33
34 virtual void containerContentChanged(int slot) /*override*/;
35
36 virtual bool isValid() /*override*/;
37
38 virtual ::ContainerWeakRef getContainerWeakRef() const /*override*/;
39
40 virtual ::Container* _getContainer() const /*override*/;
41
42 virtual void _init() /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI HudContainerModel(::ContainerEnumName containerName, ::Player& player);
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(::ContainerEnumName containerName, ::Player& player);
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCAPI void $containerContentChanged(int slot);
61
62 MCFOLD bool $isValid();
63
64 MCFOLD ::ContainerWeakRef $getContainerWeakRef() const;
65
66 MCFOLD ::Container* $_getContainer() const;
67
68 MCAPI void $_init();
69
70
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCAPI static void** $vftable();
77 // NOLINTEND
78};
Definition ContainerWeakRef.h:20
Definition Container.h:33
Definition Player.h:125