LeviLamina
Loading...
Searching...
No Matches
IEntryPoint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7
8// auto generated forward declare list
9// clang-format off
10class ISceneStack;
11class SceneFactory;
12namespace OreUI { class RouteMatcher; }
13// clang-format on
14
15namespace OreUI {
16
17class IEntryPoint {
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 virtual ~IEntryPoint();
22
23 virtual bool shouldAddToConfiguration() const = 0;
24
25 virtual void addToMatcher(
26 ::OreUI::RouteMatcher&,
27 ::SceneFactory&,
28 ::Bedrock::NotNullNonOwnerPtr<::ISceneStack> const&
29 ) const = 0;
30 // NOLINTEND
31
32public:
33 // destructor thunk
34 // NOLINTBEGIN
35 MCFOLD void $dtor();
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // vftables
46 // NOLINTBEGIN
47 MCNAPI static void** $vftable();
48 // NOLINTEND
49};
50
51} // namespace OreUI
Definition ISceneStack.h:5
Definition IEntryPoint.h:7
static MCAPI void ** $vftable()
Definition RouteMatcher.h:7
Definition SceneFactory.h:5