LeviLamina
Loading...
Searching...
No Matches
ScriptTimeMarker.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7#include "mc/deps/core/utility/NonOwnerPointer.h"
8
9// auto generated forward declare list
10// clang-format off
11class WorldClock;
12namespace Scripting { struct ClassBinding; }
13// clang-format on
14
15namespace ScriptModuleMinecraft {
16
17class ScriptTimeMarker {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 48, ::HashedString> mName;
22 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::WorldClock const> const> mClock;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 ScriptTimeMarker();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI
33 ScriptTimeMarker(::HashedString const& timeMarkerName, ::Bedrock::NotNullNonOwnerPtr<::WorldClock const> clock);
34
35 MCAPI ~ScriptTimeMarker();
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41 MCAPI static ::Scripting::ClassBinding bind();
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(::HashedString const& timeMarkerName, ::Bedrock::NotNullNonOwnerPtr<::WorldClock const> clock);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCAPI void $dtor();
54 // NOLINTEND
55};
56
57} // namespace ScriptModuleMinecraft
Definition HashedString.h:5
Definition WorldClock.h:23
Definition ClassBinding.h:10