LeviLamina
Loading...
Searching...
No Matches
EditorPlayerServiceProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/Result_deprecated.h"
7
8// auto generated forward declare list
9// clang-format off
10class Player;
11namespace Bedrock::PubSub { class Subscription; }
12namespace Editor { class ServiceProviderCollection; }
13// clang-format on
14
15namespace Editor {
16
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 // vIndex: 0
22 virtual ~EditorPlayerServiceProvider() = default;
23
24 // vIndex: 1
25 virtual ::Player* getPlayer() const = 0;
26
27 // vIndex: 2
28 virtual ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription>
29 registerTickSubscriber(::std::function<void(::Editor::ServiceProviderCollection&)>) = 0;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35
36 // NOLINTEND
37};
38
39} // namespace Editor
Definition EditorPlayerServiceProvider.h:17
Definition ServiceProviderCollection.h:7
Definition Player.h:119