LeviLamina
Loading...
Searching...
No Matches
DelayRequest.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class CompoundTag;
10// clang-format on
11
12class DelayRequest {
13public:
14 // member variables
15 // NOLINTBEGIN
16 ::ll::TypedStorage<8, 8, uint64> mTickToExecuteOn;
17 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::IRequestAction>> mAction;
18 ::ll::TypedStorage<8, 32, ::std::string> mSerializationId;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 DelayRequest();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI DelayRequest(::std::unique_ptr<::IRequestAction> action, uint64 tickToExecuteOn);
29
30 MCAPI ~DelayRequest();
31 // NOLINTEND
32
33public:
34 // static functions
35 // NOLINTBEGIN
36 MCAPI static ::DelayRequest load(
37 ::std::string const& key,
38 ::CompoundTag const& tag,
40 ::std::string const& dimensionPrefix
41 );
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor(::std::unique_ptr<::IRequestAction> action, uint64 tickToExecuteOn);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCAPI void $dtor();
54 // NOLINTEND
55};
Definition CompoundTag.h:23
Definition ICommandOriginLoader.h:11
Definition IRequestAction.h:12