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
18class EditorServerPlayer : public ::Editor::EditorPlayerCommon {
19public:
20 // member variables
21 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 EditorServerPlayer& operator=(EditorServerPlayer const&);
29 EditorServerPlayer(EditorServerPlayer const&);
30 EditorServerPlayer();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~EditorServerPlayer() /*override*/;
36
37 virtual ::Scripting::Result_deprecated<void> init() /*override*/;
38
39 virtual ::Scripting::Result_deprecated<void> ready() /*override*/;
40
41 virtual ::Scripting::Result_deprecated<void> quit() /*override*/;
42
43 virtual ::optional_ref<::PlayerEventCoordinator> getPlayerEventCoordinator() /*override*/;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCNAPI ::ServerPlayer* getServerPlayer() const;
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCNAPI void $dtor();
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCNAPI ::Scripting::Result_deprecated<void> $init();
62
63 MCNAPI ::Scripting::Result_deprecated<void> $ready();
64
65 MCNAPI ::Scripting::Result_deprecated<void> $quit();
66
67 MCNAPI ::optional_ref<::PlayerEventCoordinator> $getPlayerEventCoordinator();
68
69
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftableForIEditorPlayer();
76
78
79 MCNAPI static void** $vftableForEventListenerDispatcher();
80
81 MCNAPI static void** $vftableForEditorServiceList();
82 // NOLINTEND
83};
84
85} // namespace Editor
Definition EditorPlayerCommon.h:33
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 ** $vftableForEventListenerDispatcher()
MCAPI ::Scripting::Result_deprecated< void > $quit()
static MCAPI void ** $vftableForIEditorPlayer()
MCAPI ::optional_ref<::PlayerEventCoordinator > $getPlayerEventCoordinator()
Definition PlayerEventCoordinator.h:22
Definition ServerPlayer.h:67
Definition Alias.h:14