LeviLamina
Loading...
Searching...
No Matches
TradeOverviewQuery.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 TradeOverviewQuery : public ::OreUI::QueryBase<::OreUI::TradeOverviewQuery> {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 176, ::OreUI::Property<bool>> mIsExperienceBarVisible;
24 ::ll::TypedStorage<8, 176, ::OreUI::Property<float>> mExperienceProgress;
25 ::ll::TypedStorage<8, 176, ::OreUI::Property<float>> mExperiencePossibleProgress;
26 ::ll::TypedStorage<8, 200, ::OreUI::Property<::std::string>> mTraderName;
27 ::ll::TypedStorage<8, 176, ::OreUI::Property<int>> mTradeTiers;
28 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::GameplayUI::GameplayUIContext>> mContext;
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
33 TradeOverviewQuery();
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 virtual void update(double) /*override*/;
39
40 virtual ~TradeOverviewQuery() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI TradeOverviewQuery(::OreUI::GameDependencies const& game, ::OreUI::ClientDependencies const& client);
47 // NOLINTEND
48
49public:
50 // static variables
51 // NOLINTBEGIN
52 MCAPI static ::std::add_lvalue_reference_t<char const[]> NAME();
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCAPI void* $ctor(::OreUI::GameDependencies const& game, ::OreUI::ClientDependencies const& client);
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64 MCAPI void $update(double);
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftableForIQuery();
71
72 MCNAPI static void** $vftableForPropertyObject();
73 // NOLINTEND
74};
75
76} // namespace OreUI
Definition ClientDependencies.h:7
Definition GameDependencies.h:7
Definition TradeOverviewQuery.h:7
static MCAPI void ** $vftableForIQuery()
static MCAPI void ** $vftableForPropertyObject()
Definition GameplayUIContext.h:7