LeviLamina
Loading...
Searching...
No Matches
ScriptWorldClockRestartBeforeEvent.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/script_core/lifetime_registry/scripting/StrongTypedObjectHandle.h"
8
9// auto generated forward declare list
10// clang-format off
11class WorldClock;
12namespace ScriptModuleMinecraft { class ScriptWorldClock; }
13namespace Scripting { class WeakLifetimeScope; }
14namespace Scripting { struct ClassBinding; }
15// clang-format on
16
17namespace ScriptModuleMinecraft {
18
19struct ScriptWorldClockRestartBeforeEvent {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 32, ::Scripting::StrongTypedObjectHandle<::ScriptModuleMinecraft::ScriptWorldClock>> mClock;
24 ::ll::TypedStorage<4, 4, int> mNewTime;
25 ::ll::TypedStorage<1, 1, bool> mCancel;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 ScriptWorldClockRestartBeforeEvent();
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI ScriptWorldClockRestartBeforeEvent(
36 ::Bedrock::NotNullNonOwnerPtr<::WorldClock> clock,
37 int newTime,
39 );
40 // NOLINTEND
41
42public:
43 // static functions
44 // NOLINTBEGIN
45 MCAPI static ::Scripting::ClassBinding bind();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCAPI void*
52 $ctor(::Bedrock::NotNullNonOwnerPtr<::WorldClock> clock, int newTime, ::Scripting::WeakLifetimeScope const& scope);
53 // NOLINTEND
54};
55
56} // namespace ScriptModuleMinecraft
Definition ScriptWorldClock.h:22
Definition WeakLifetimeScope.h:12
Definition WorldClock.h:23
Definition ClassBinding.h:10