LeviLamina
Loading...
Searching...
No Matches
ContainerNameQuery.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 ContainerNameQuery : public ::OreUI::QueryBase<::OreUI::ContainerNameQuery> {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 200, ::OreUI::Property<::std::string>> mName;
24 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::GameplayUI::GameplayUIContext>> mContext;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 ContainerNameQuery();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual void update(double time) /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI ContainerNameQuery(::OreUI::GameDependencies const& game, ::OreUI::ClientDependencies const& client);
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::OreUI::GameDependencies const& game, ::OreUI::ClientDependencies const& client);
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI void $update(double time);
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftableForIQuery();
59
60 MCNAPI static void** $vftableForPropertyObject();
61 // NOLINTEND
62};
63
64} // namespace OreUI
Definition ClientDependencies.h:7
Definition ContainerNameQuery.h:7
static MCAPI void ** $vftableForIQuery()
static MCAPI void ** $vftableForPropertyObject()
Definition GameDependencies.h:7
Definition GameplayUIContext.h:7