LeviLamina
Loading...
Searching...
No Matches
ContainerItemBindings.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/gameplay/api/gameplayui/ContainerItemStatusType.h"
7#include "mc/client/gui/gameplay/api/gameplayui/ContainerItemType.h"
8#include "mc/client/gui/gameplay/data/gameplayui/BundleColor.h"
9#include "mc/client/gui/oreui/binding/properties/Property.h"
10
11// auto generated forward declare list
12// clang-format off
13namespace GameplayUI { struct ContainerItem; }
14namespace OreUI::Detail { class IPropertyObject; }
15// clang-format on
16
17namespace OreUI {
18
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 176, ::OreUI::Property<int>> amount;
24 ::ll::TypedStorage<8, 200, ::OreUI::Property<::std::string>> name;
25 ::ll::TypedStorage<8, 200, ::OreUI::Property<::std::string>> details;
26 ::ll::TypedStorage<8, 200, ::OreUI::Property<::std::string>> image;
27 ::ll::TypedStorage<8, 176, ::OreUI::Property<::GameplayUI::ContainerItemStatusType>> statusType;
28 ::ll::TypedStorage<8, 176, ::OreUI::Property<int>> statusValue;
29 ::ll::TypedStorage<8, 176, ::OreUI::Property<int>> statusMax;
30 ::ll::TypedStorage<8, 176, ::OreUI::Property<::GameplayUI::ContainerItemType>> containerItemType;
31 ::ll::TypedStorage<8, 176, ::OreUI::Property<::std::optional<int>>> bundleID;
32 ::ll::TypedStorage<8, 176, ::OreUI::Property<::std::optional<::GameplayUI::BundleColor>>> bundleColor;
33 // NOLINTEND
34
35public:
36 // prevent constructor by default
37 ContainerItemBindings();
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCAPI ContainerItemBindings(::OreUI::Detail::IPropertyObject* parent, ::GameplayUI::ContainerItem item);
43
44 MCAPI void update(::GameplayUI::ContainerItem const& item);
45
46 MCAPI ~ContainerItemBindings();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::OreUI::Detail::IPropertyObject* parent, ::GameplayUI::ContainerItem item);
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58 MCAPI void $dtor();
59 // NOLINTEND
60};
61
62} // namespace OreUI
Definition IPropertyObject.h:7
Definition ContainerItem.h:7
Definition ContainerItemBindings.h:7