LeviLamina
Loading...
Searching...
No Matches
ScriptSettings.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/NonOwnerPointer.h"
7#include "mc/deps/scripting/runtime/watchdog/WatchdogSettings.h"
8#include "mc/scripting/ScriptPackConfigurationManager.h"
9#include "mc/scripting/debugger/ScriptDebuggerSettings.h"
10#include "mc/util/BaseGameVersion.h"
11
12// auto generated forward declare list
13// clang-format off
14namespace cereal { struct ReflectionCtx; }
15namespace mce { class UUID; }
16// clang-format on
17
18struct ScriptSettings {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::cereal::ReflectionCtx const>> mCerealContext;
23 ::ll::TypedStorage<8, 480, ::ScriptPackConfigurationManager> mPackConfigurationManager;
24 ::ll::TypedStorage<1, 1, bool> mEnabled;
25 ::ll::TypedStorage<1, 1, bool> mEnableEditorModules;
26 ::ll::TypedStorage<8, 32, ::BaseGameVersion> mBaseGameVersion;
27 ::ll::TypedStorage<8, 104, ::ScriptDebuggerSettings> mDebuggerSettings;
28 ::ll::TypedStorage<8, 24, ::std::vector<::mce::UUID>> mExcludedScriptModules;
29 ::ll::TypedStorage<4, 36, ::std::optional<::Scripting::WatchdogSettings>> mWatchdogSettings;
30 ::ll::TypedStorage<1, 1, bool> mDiagnosticsAutoStart;
31 ::ll::TypedStorage<4, 8, ::std::optional<uint>> mMaxDiagnosticsCaptureFiles;
32 ::ll::TypedStorage<4, 8, ::std::optional<uint>> mMaxDiagnosticsCaptureFileSize;
33 ::ll::TypedStorage<4, 8, ::std::optional<uint>> mMaxEventsPerWindow;
34 ::ll::TypedStorage<8, 16, ::std::optional<::std::chrono::seconds>> mRateLimitWindow;
35 // NOLINTEND
36
37public:
38 // prevent constructor by default
39 ScriptSettings& operator=(ScriptSettings const&);
40 ScriptSettings(ScriptSettings const&);
41 ScriptSettings();
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCNAPI ScriptSettings(::ScriptSettings&&);
47
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCNAPI void* $ctor(::ScriptSettings&&);
55
56 MCNAPI_S void* $ctor(::ScriptSettings const&);
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCNAPI void $dtor();
63 // NOLINTEND
64};
Definition UUID.h:7
MCAPI void $dtor()
MCAPI void * $ctor(::ScriptSettings &&)
MCAPI ScriptSettings(::ScriptSettings &&)
MCAPI ~ScriptSettings()
Definition ReflectionCtx.h:11