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 // member functions
34 // NOLINTBEGIN
35 MCAPI RecipeBookSearchStringCommandGroup(
36 ::OreUI::GameDependencies const& game,
37 ::OreUI::ClientDependencies const& client
38 );
39
40 MCAPI void setRecipeBookSearchString(::std::string searchText);
41 // NOLINTEND
42
43public:
44 // static variables
45 // NOLINTBEGIN
46 MCAPI static ::std::add_lvalue_reference_t<char const[]> NAME();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::OreUI::GameDependencies const& game, ::OreUI::ClientDependencies const& client);
53 // NOLINTEND
54
55public:
56 // vftables
57 // NOLINTBEGIN
58 MCNAPI static void** $vftable();
59 // NOLINTEND
60};
61
62} // namespace OreUI
Definition ClientDependencies.h:7
Definition GameDependencies.h:7
Definition RecipeBookSearchStringCommandGroup.h:7
Definition GameplayUIContext.h:7