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_deprecated.h"
8#include "mc/editor/EditorPlayerCommon.h"
9
10// auto generated forward declare list
11// clang-format off
13class ServerPlayer;
14// clang-format on
15
16namespace Editor {
17
19public:
20 // member variables
21 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 EditorServerPlayer& operator=(EditorServerPlayer const&);
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 // vIndex: 0
36 virtual ~EditorServerPlayer() /*override*/ = default;
37
38 // vIndex: 1
39 virtual ::Scripting::Result_deprecated<void> init() /*override*/;
40
41 // vIndex: 2
42 virtual ::Scripting::Result_deprecated<void> ready() /*override*/;
43
44 // vIndex: 3
45 virtual ::Scripting::Result_deprecated<void> quit() /*override*/;
46
47 // vIndex: 6
48 virtual ::optional_ref<::PlayerEventCoordinator> getPlayerEventCoordinator() /*override*/;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCNAPI ::ServerPlayer* getServerPlayer() const;
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCNAPI ::Scripting::Result_deprecated<void> $init();
61
62 MCNAPI ::Scripting::Result_deprecated<void> $ready();
63
64 MCNAPI ::Scripting::Result_deprecated<void> $quit();
65
66 MCNAPI ::optional_ref<::PlayerEventCoordinator> $getPlayerEventCoordinator();
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftableForIEditorPlayer();
73
74 MCNAPI static void** $vftableForPlayerEventListener();
75
77
78 MCNAPI static void** $vftableForEditorServiceList();
79 // NOLINTEND
80};
81
82} // namespace Editor
Definition EditorPlayerCommon.h:29
Definition EditorServerPlayer.h:18
MCAPI ::Scripting::Result_deprecated< void > $init()
static MCAPI void ** $vftableForEditorPlayerServiceProvider()
MCAPI::ServerPlayer * getServerPlayer() const
static MCAPI void ** $vftableForEditorServiceList()
MCAPI ::Scripting::Result_deprecated< void > $ready()
static MCAPI void ** $vftableForPlayerEventListener()
MCAPI ::Scripting::Result_deprecated< void > $quit()
static MCAPI void ** $vftableForIEditorPlayer()
MCAPI ::optional_ref<::PlayerEventCoordinator > $getPlayerEventCoordinator()
Definition PlayerEventCoordinator.h:20
Definition ServerPlayer.h:64
Definition Alias.h:14