LeviLamina
Loading...
Searching...
No Matches
EditorManagerServerServiceProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Bedrock::PubSub { class Subscription; }
8namespace Editor { class EditorManagerServer; }
9// clang-format on
10
11namespace Editor::Services {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~EditorManagerServerServiceProvider() = default;
19
20 // vIndex: 1
21 virtual ::Bedrock::PubSub::Subscription
22 registerLevelInitializeSubscriber(::std::function<void(bool, ::Editor::EditorManagerServer&)>) = 0;
23 // NOLINTEND
24
25public:
26 // virtual function thunks
27 // NOLINTBEGIN
28
29 // NOLINTEND
30};
31
32} // namespace Editor::Services
Definition EditorManagerServer.h:39
Definition EditorManagerServerServiceProvider.h:13