LeviLamina
Loading...
Searching...
No Matches
IEditorPlayer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7#include "mc/deps/scripting/runtime/Result.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Editor { class ServiceProviderCollection; }
12// clang-format on
13
14namespace Editor {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 0
21 virtual ~IEditorPlayer() /*override*/;
22
23 // vIndex: 1
24 virtual ::Scripting::Result<void> init() = 0;
25
26 // vIndex: 2
27 virtual ::Scripting::Result<void> ready() = 0;
28
29 // vIndex: 3
30 virtual ::Scripting::Result<void> quit() = 0;
31
32 // vIndex: 4
33 virtual ::Editor::ServiceProviderCollection& getServiceProviders() = 0;
34
35 // vIndex: 5
36 virtual void _onTick() = 0;
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCFOLD void $dtor();
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48
49 // NOLINTEND
50};
51
52} // namespace Editor
Definition EnableNonOwnerReferences.h:7
Definition IEditorPlayer.h:16