LeviLamina
Loading...
Searching...
No Matches
HorseScreenController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/screens/controllers/BlockContainerScreenController.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
12class Player;
13struct ActorUniqueID;
14namespace Json { class Value; }
15// clang-format on
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<1, 1, bool> mChestTabOpen;
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 HorseScreenController();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ~HorseScreenController() /*override*/ = default;
32
33 virtual void addStaticScreenVars(::Json::Value& globalVars) /*override*/;
34
35 virtual bool _isStillValid() const /*override*/;
36
37 virtual void _registerCoalesceOrder() /*override*/;
38
39 virtual void _registerAutoPlaceOrder() /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCAPI HorseScreenController(
46 ::std::shared_ptr<::ClientInstanceScreenModel> ptrModel,
47 ::Player& player,
48 ::BlockPos const& pos,
49 ::ActorUniqueID uniqueId
50 );
51
52 MCAPI int _getChestInventorySize() const;
53
54 MCAPI ::glm::ivec2 _getEquipGridSize() const;
55
56 MCAPI bool _isChested() const;
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62 MCAPI void* $ctor(
63 ::std::shared_ptr<::ClientInstanceScreenModel> ptrModel,
64 ::Player& player,
65 ::BlockPos const& pos,
66 ::ActorUniqueID uniqueId
67 );
68 // NOLINTEND
69
70public:
71 // virtual function thunks
72 // NOLINTBEGIN
73 MCAPI void $addStaticScreenVars(::Json::Value& globalVars);
74
75 MCAPI bool $_isStillValid() const;
76
77 MCAPI void $_registerCoalesceOrder();
78
79 MCAPI void $_registerAutoPlaceOrder();
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftableForScreenController();
86
88 // NOLINTEND
89};
Definition BlockContainerScreenController.h:5
Definition BlockPos.h:19
Definition ClientInstanceScreenModel.h:5
Definition HorseScreenController.h:5
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI void ** $vftableForScreenController()
Definition Value.h:16
Definition Player.h:125
Definition ActorUniqueID.h:5