LeviLamina
Loading...
Searching...
No Matches
RecipeBookSearchStringCommandGroup.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/binding/CommandGroupBase.h"
7#include "mc/client/gui/oreui/binding/methods/CallableImpl.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
20: public ::OreUI::CommandGroupBase<::OreUI::RecipeBookSearchStringCommandGroup> {
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::GameplayUI::GameplayUIContext>> mContext;
25 ::ll::TypedStorage<8, 136, ::OreUI::Detail::CallableImpl<void, ::std::string>> mSetRecipeBookSearchString;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 RecipeBookSearchStringCommandGroup();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~RecipeBookSearchStringCommandGroup() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI RecipeBookSearchStringCommandGroup(
42 ::OreUI::GameDependencies const& game,
43 ::OreUI::ClientDependencies const& client
44 );
45
46 MCAPI void setRecipeBookSearchString(::std::string searchText);
47 // NOLINTEND
48
49public:
50 // static variables
51 // NOLINTBEGIN
52 MCAPI static ::std::add_lvalue_reference_t<char const[]> NAME();
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCAPI void* $ctor(::OreUI::GameDependencies const& game, ::OreUI::ClientDependencies const& client);
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
67
68} // namespace OreUI
Definition ClientDependencies.h:7
Definition GameDependencies.h:7
Definition RecipeBookSearchStringCommandGroup.h:7
Definition GameplayUIContext.h:7