LeviLamina
Loading...
Searching...
No Matches
ServerPlayerLogMessageHandlerService.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/IEditorService.h"
8
9namespace Editor::Services {
10
12public:
13 // virtual functions
14 // NOLINTBEGIN
15 // vIndex: 0
16 virtual ~ServerPlayerLogMessageHandlerService() /*override*/ = default;
17
18 // vIndex: 4
19 virtual ::std::string_view getServiceName() const /*override*/;
20
21 // vIndex: 1
22 virtual ::Scripting::Result<void> init() /*override*/;
23
24 // vIndex: 2
25 virtual ::Scripting::Result<void> ready() /*override*/;
26
27 // vIndex: 3
28 virtual ::Scripting::Result<void> quit() /*override*/;
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40 MCAPI ::std::string_view $getServiceName() const;
41
42 MCFOLD ::Scripting::Result<void> $init();
43
44 MCAPI ::Scripting::Result<void> $ready();
45
46 MCFOLD ::Scripting::Result<void> $quit();
47 // NOLINTEND
48
49public:
50 // vftables
51 // NOLINTBEGIN
52 MCAPI static void** $vftable();
53 // NOLINTEND
54};
55
56} // namespace Editor::Services
Definition IEditorService.h:11
Definition ServerPlayerLogMessageHandlerService.h:11