LeviLamina
Loading...
Searching...
No Matches
BrewingStandQuery.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/binding/QueryBase.h"
7#include "mc/client/gui/oreui/binding/properties/Property.h"
8#include "mc/deps/core/utility/NonOwnerPointer.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace GameplayUI { struct GameplayUIContext; }
13namespace OreUI { class ClientDependencies; }
14namespace OreUI { class GameDependencies; }
15// clang-format on
16
17namespace OreUI {
18
19class BrewingStandQuery : public ::OreUI::QueryBase<::OreUI::BrewingStandQuery> {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 176, ::OreUI::Property<float>> mBrewProgress;
24 ::ll::TypedStorage<8, 176, ::OreUI::Property<float>> mFuelProgress;
25 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::GameplayUI::GameplayUIContext>> mContext;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 BrewingStandQuery();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual void update(double) /*override*/;
36
37 virtual ~BrewingStandQuery() /*override*/ = default;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI BrewingStandQuery(::OreUI::GameDependencies const& game, ::OreUI::ClientDependencies const& client);
44 // NOLINTEND
45
46public:
47 // static variables
48 // NOLINTBEGIN
49 MCAPI static ::std::add_lvalue_reference_t<char const[]> NAME();
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCAPI void* $ctor(::OreUI::GameDependencies const& game, ::OreUI::ClientDependencies const& client);
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCAPI void $update(double);
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftableForPropertyObject();
68
69 MCNAPI static void** $vftableForIQuery();
70 // NOLINTEND
71};
72
73} // namespace OreUI
Definition BrewingStandQuery.h:7
static MCAPI void ** $vftableForPropertyObject()
static MCAPI void ** $vftableForIQuery()
Definition ClientDependencies.h:7
Definition GameDependencies.h:7
Definition GameplayUIContext.h:7