LeviLamina
Loading...
Searching...
No Matches
ServerPlayerStateControllerService.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/Result.h"
7#include "mc/editor/services/state/PlayerStateControllerService.h"
8
9// auto generated forward declare list
10// clang-format off
11class Player;
12namespace Editor::Settings { struct SpeedProps; }
13// clang-format on
14
15namespace Editor::Services {
16
18public:
19 // member variables
20 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 // vIndex: 0
37 virtual ~ServerPlayerStateControllerService() /*override*/ = default;
38
39 // vIndex: 2
40 virtual ::Scripting::Result<void> ready() /*override*/;
41
42 // vIndex: 4
43 virtual ::std::string_view getServiceName() const /*override*/;
44
45 // vIndex: 7
46 virtual void _onEditorActivate() /*override*/;
47
48 // vIndex: 8
49 virtual void _onEditorDeactivate() /*override*/;
50
51 // vIndex: 9
52 virtual void _onEnterToolMode() /*override*/;
53
54 // vIndex: 10
55 virtual void _onExitToolMode() /*override*/;
56
57 // vIndex: 11
58 virtual void _onEnterCrosshairMode() /*override*/;
59
60 // vIndex: 12
61 virtual void _onExitCrosshairMode() /*override*/;
62 // NOLINTEND
63
64public:
65 // member functions
66 // NOLINTBEGIN
67 MCAPI void _setFlySpeedMultiplier(::Editor::Settings::SpeedProps const& newValue);
68 // NOLINTEND
69
70public:
71 // static functions
72 // NOLINTBEGIN
73 MCAPI static void _updateAbilitiesOnClient(::Player& player);
74 // NOLINTEND
75
76public:
77 // destructor thunk
78 // NOLINTBEGIN
79
80 // NOLINTEND
81
82public:
83 // virtual function thunks
84 // NOLINTBEGIN
85 MCAPI ::Scripting::Result<void> $ready();
86
87 MCAPI ::std::string_view $getServiceName() const;
88
89 MCAPI void $_onEditorActivate();
90
91 MCAPI void $_onEditorDeactivate();
92
93 MCAPI void $_onEnterToolMode();
94
95 MCAPI void $_onExitToolMode();
96
97 MCAPI void $_onEnterCrosshairMode();
98
99 MCAPI void $_onExitCrosshairMode();
100 // NOLINTEND
101
102public:
103 // vftables
104 // NOLINTBEGIN
105 MCAPI static void** $vftable();
106 // NOLINTEND
107};
108
109} // namespace Editor::Services
Definition PlayerStateControllerService.h:17
Definition ServerPlayerStateControllerService.h:17
Definition Player.h:119
Definition SpeedProps.h:7
Definition Alias.h:14