LeviLamina
Loading...
Searching...
No Matches
EditorServerPlayer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/optional_ref.h"
7#include "mc/deps/scripting/runtime/Result.h"
8#include "mc/editor/EditorPlayerCommon.h"
9
10// auto generated forward declare list
11// clang-format off
13// clang-format on
14
15namespace Editor {
16
18public:
19 // member variables
20 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 EditorServerPlayer& operator=(EditorServerPlayer const&);
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~EditorServerPlayer() /*override*/ = default;
36
37 // vIndex: 1
38 virtual ::Scripting::Result<void> init() /*override*/;
39
40 // vIndex: 2
41 virtual ::Scripting::Result<void> ready() /*override*/;
42
43 // vIndex: 3
44 virtual ::Scripting::Result<void> quit() /*override*/;
45
46 // vIndex: 6
47 virtual ::optional_ref<::PlayerEventCoordinator> getPlayerEventCoordinator() /*override*/;
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI ::Scripting::Result<void> $init();
60
61 MCAPI ::Scripting::Result<void> $ready();
62
63 MCAPI ::Scripting::Result<void> $quit();
64
65 MCAPI ::optional_ref<::PlayerEventCoordinator> $getPlayerEventCoordinator();
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCAPI static void** $vftableForIEditorPlayer();
72
73 MCAPI static void** $vftableForPlayerEventListener();
74
75 MCAPI static void** $vftableForEditorPlayerServiceProvider();
76
77 MCAPI static void** $vftableForEditorServiceList();
78 // NOLINTEND
79};
80
81} // namespace Editor
Definition EditorPlayerCommon.h:30
Definition EditorServerPlayer.h:17
Definition PlayerEventCoordinator.h:20
Definition Alias.h:14