LeviLamina
Loading...
Searching...
No Matches
TradeOfferQuery.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 TradeOfferQuery : public ::OreUI::QueryBase<::OreUI::TradeOfferQuery> {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 176, ::OreUI::Property<bool>> mIsOutOfUses;
24 ::ll::TypedStorage<8, 200, ::OreUI::Property<::std::string>> mBuyAItemName;
25 ::ll::TypedStorage<8, 200, ::OreUI::Property<::std::string>> mBuyBItemName;
26 ::ll::TypedStorage<8, 200, ::OreUI::Property<::std::string>> mSellItemName;
27 ::ll::TypedStorage<8, 176, ::OreUI::Property<int>> mBuyAItemAmount;
28 ::ll::TypedStorage<8, 176, ::OreUI::Property<int>> mBuyBItemAmount;
29 ::ll::TypedStorage<8, 176, ::OreUI::Property<int>> mSellItemAmount;
30 ::ll::TypedStorage<8, 200, ::OreUI::Property<::std::string>> mBuyAItemImage;
31 ::ll::TypedStorage<8, 200, ::OreUI::Property<::std::string>> mBuyBItemImage;
32 ::ll::TypedStorage<8, 200, ::OreUI::Property<::std::string>> mSellItemImage;
33 ::ll::TypedStorage<8, 176, ::OreUI::Property<bool>> mHasSecondaryBuyItem;
34 ::ll::TypedStorage<8, 176, ::OreUI::Property<bool>> mPlayerHasItemsForTrade;
35 ::ll::TypedStorage<8, 176, ::OreUI::Property<bool>> mIsSelectedTrade;
36 ::ll::TypedStorage<4, 4, int> mTradeTier;
37 ::ll::TypedStorage<4, 4, int> mTradeIndex;
38 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::GameplayUI::GameplayUIContext>> mContext;
39 // NOLINTEND
40
41public:
42 // prevent constructor by default
43 TradeOfferQuery();
44
45public:
46 // virtual functions
47 // NOLINTBEGIN
48 virtual void update(double) /*override*/;
49
50 virtual ~TradeOfferQuery() /*override*/;
51 // NOLINTEND
52
53public:
54 // member functions
55 // NOLINTBEGIN
56 MCAPI TradeOfferQuery(
57 ::OreUI::GameDependencies const& game,
58 ::OreUI::ClientDependencies const& client,
59 int tradeTier,
60 int tradeIndex
61 );
62 // NOLINTEND
63
64public:
65 // static variables
66 // NOLINTBEGIN
67 MCAPI static ::std::add_lvalue_reference_t<char const[]> NAME();
68 // NOLINTEND
69
70public:
71 // constructor thunks
72 // NOLINTBEGIN
73 MCAPI void* $ctor(
74 ::OreUI::GameDependencies const& game,
75 ::OreUI::ClientDependencies const& client,
76 int tradeTier,
77 int tradeIndex
78 );
79 // NOLINTEND
80
81public:
82 // destructor thunk
83 // NOLINTBEGIN
84 MCAPI void $dtor();
85 // NOLINTEND
86
87public:
88 // virtual function thunks
89 // NOLINTBEGIN
90 MCAPI void $update(double);
91 // NOLINTEND
92
93public:
94 // vftables
95 // NOLINTBEGIN
96 MCNAPI static void** $vftableForPropertyObject();
97
98 MCNAPI static void** $vftableForIQuery();
99 // NOLINTEND
100};
101
102} // namespace OreUI
Definition ClientDependencies.h:7
Definition GameDependencies.h:7
Definition TradeOfferQuery.h:7
static MCAPI void ** $vftableForIQuery()
static MCAPI void ** $vftableForPropertyObject()
Definition GameplayUIContext.h:7