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 time) /*override*/;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI TradeOverviewQuery(::OreUI::GameDependencies const& game, ::OreUI::ClientDependencies const& client);
45 // NOLINTEND
46
47public:
48 // static variables
49 // NOLINTBEGIN
50 MCAPI static ::std::add_lvalue_reference_t<char const[]> NAME();
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCAPI void* $ctor(::OreUI::GameDependencies const& game, ::OreUI::ClientDependencies const& client);
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCAPI void $update(double time);
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftableForIQuery();
69
70 MCNAPI static void** $vftableForPropertyObject();
71 // NOLINTEND
72};
73
74} // 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