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
13// clang-format on
14
15namespace Editor {
16
17class EditorServerPlayer : public ::Editor::EditorPlayerCommon {
18public:
19 // member variables
20 // 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
45 virtual bool isClientSide() const /*override*/;
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCNAPI ::Scripting::Result_deprecated<void> $init();
58
59 MCNAPI ::Scripting::Result_deprecated<void> $ready();
60
61 MCNAPI ::Scripting::Result_deprecated<void> $quit();
62
63 MCNAPI ::optional_ref<::PlayerEventCoordinator> $getPlayerEventCoordinator();
64
65 MCNAPI bool $isClientSide() const;
66
67
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCNAPI static void** $vftableForIEditorPlayer();
74
76
77 MCNAPI static void** $vftableForEventListenerDispatcher();
78
79 MCNAPI static void** $vftableForEditorServiceList();
80 // NOLINTEND
81};
82
83} // namespace Editor
Definition EditorPlayerCommon.h:33
MCAPI ::Scripting::Result_deprecated< void > $init()
static MCAPI void ** $vftableForEditorPlayerServiceProvider()
MCAPI bool $isClientSide() 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:28
Definition Alias.h:14