LeviLamina
Loading...
Searching...
No Matches
InGameSettings.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/routing/IEntryPoint.h"
7#include "mc/client/gui/oreui/routing/RouteFlags.h"
8#include "mc/deps/core/utility/NonOwnerPointer.h"
9
10// auto generated forward declare list
11// clang-format off
12class ILevelListCache;
13class ISceneStack;
14class SceneFactory;
15class ServerInstance;
16class TaskGroup;
17namespace OreUI { class RouteMatcher; }
18// clang-format on
19
20namespace OreUI::EntryPoints {
21
22class InGameSettings : public ::OreUI::IEntryPoint {
23public:
24 // member variables
25 // NOLINTBEGIN
26 ::ll::TypedStorage<8, 64, ::std::function<::ILevelListCache&()>> mGetLevelListCache;
27 ::ll::TypedStorage<8, 64, ::std::function<::ServerInstance*()>> mGetServerInstance;
28 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::TaskGroup>> mAsyncTaskGroup;
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
33 InGameSettings();
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 virtual bool shouldAddToConfiguration() const /*override*/;
39
40 virtual void addToMatcher(
41 ::OreUI::RouteMatcher& routeMatcher,
42 ::SceneFactory& sceneFactory,
43 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
44 ) const /*override*/;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCAPI InGameSettings(
51 ::std::function<::ILevelListCache&()> getLevelListCache,
52 ::std::function<::ServerInstance*()> getServerInstance
53 );
54 // NOLINTEND
55
56public:
57 // static variables
58 // NOLINTBEGIN
59 MCAPI static ::OreUI::EntryPoints::RouteFlags const& FLAGS();
60
61 MCAPI static ::std::add_lvalue_reference_t<char const[]> ROUTE();
62 // NOLINTEND
63
64public:
65 // constructor thunks
66 // NOLINTBEGIN
67 MCAPI void* $ctor(
68 ::std::function<::ILevelListCache&()> getLevelListCache,
69 ::std::function<::ServerInstance*()> getServerInstance
70 );
71 // NOLINTEND
72
73public:
74 // virtual function thunks
75 // NOLINTBEGIN
76 MCFOLD bool $shouldAddToConfiguration() const;
77
78 MCAPI void $addToMatcher(
79 ::OreUI::RouteMatcher& routeMatcher,
80 ::SceneFactory& sceneFactory,
81 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const& sceneStack
82 ) const;
83 // NOLINTEND
84
85public:
86 // vftables
87 // NOLINTBEGIN
88 MCNAPI static void** $vftable();
89 // NOLINTEND
90};
91
92} // namespace OreUI::EntryPoints
Definition ILevelListCache.h:27
Definition ISceneStack.h:5
Definition InGameSettings.h:7
static MCAPI void ** $vftable()
Definition RouteMatcher.h:7
Definition SceneFactory.h:5
Definition ServerInstance.h:64
Definition TaskGroup.h:55