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 virtual ~EditorManagerServerServiceProvider() = default;
18
19 virtual ::Bedrock::PubSub::Subscription
20 registerLevelInitializeSubscriber(::std::function<void(bool, ::Editor::EditorManagerServer&)>) = 0;
21
22 virtual ::Bedrock::PubSub::Subscription
23 registerLevelTickSubscriber(::std::function<void(::Editor::EditorManagerServer&)>) = 0;
24 // NOLINTEND
25
26public:
27 // virtual function thunks
28 // NOLINTBEGIN
29
30 // NOLINTEND
31};
32
33} // namespace Editor::Services
Definition Subscription.h:10
Definition EditorManagerServer.h:39
Definition EditorManagerServerServiceProvider.h:13