LeviLamina
Loading...
Searching...
No Matches
MinecraftScriptSentryPlugin.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/modules/diagnostics/IScriptSentryPlugin.h"
7
8// auto generated forward declare list
9// clang-format off
11// clang-format on
12
13namespace ScriptModuleDiagnostics {
14
16public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual ~MinecraftScriptSentryPlugin() /*override*/ = default;
34
35 // vIndex: 1
36 virtual void setSentryLogger(::std::unique_ptr<::ScriptSentryLogger> sentryLogger) /*override*/;
37
38 // vIndex: 2
39 virtual ::std::string const& getPlatformName() const /*override*/;
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCNAPI void $setSentryLogger(::std::unique_ptr<::ScriptSentryLogger> sentryLogger);
46
47 MCNAPI ::std::string const& $getPlatformName() const;
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCNAPI static void** $vftable();
54 // NOLINTEND
55};
56
57} // namespace ScriptModuleDiagnostics
Definition IScriptSentryPlugin.h:12
Definition MinecraftScriptSentryPlugin.h:15
MCAPI::std::string const & $getPlatformName() const
MCAPI void $setSentryLogger(::std::unique_ptr<::ScriptSentryLogger > sentryLogger)
Definition ScriptSentryLogger.h:14
Definition Alias.h:14