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 time) /*override*/;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCAPI TradeOfferQuery(
55 ::OreUI::GameDependencies const& game,
56 ::OreUI::ClientDependencies const& client,
57 int tradeTier,
58 int tradeIndex
59 );
60 // NOLINTEND
61
62public:
63 // static variables
64 // NOLINTBEGIN
65 MCAPI static ::std::add_lvalue_reference_t<char const[]> NAME();
66 // NOLINTEND
67
68public:
69 // constructor thunks
70 // NOLINTBEGIN
71 MCAPI void* $ctor(
72 ::OreUI::GameDependencies const& game,
73 ::OreUI::ClientDependencies const& client,
74 int tradeTier,
75 int tradeIndex
76 );
77 // NOLINTEND
78
79public:
80 // virtual function thunks
81 // NOLINTBEGIN
82 MCAPI void $update(double time);
83 // NOLINTEND
84
85public:
86 // vftables
87 // NOLINTBEGIN
88 MCNAPI static void** $vftableForPropertyObject();
89
90 MCNAPI static void** $vftableForIQuery();
91 // NOLINTEND
92};
93
94} // 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