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
8// clang-format on
9
10class DelayRequest {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 8, uint64> mTickToExecuteOn;
15 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::IRequestAction>> mAction;
16 ::ll::TypedStorage<8, 32, ::std::string> mSerializationId;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 DelayRequest& operator=(DelayRequest const&);
22 DelayRequest(DelayRequest const&);
23 DelayRequest();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCNAPI ::DelayRequest& operator=(::DelayRequest&&);
29
30 MCNAPI ~DelayRequest();
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCNAPI void $dtor();
37 // NOLINTEND
38};
MCAPI void $dtor()
MCAPI::DelayRequest & operator=(::DelayRequest &&)
MCAPI ~DelayRequest()
Definition IRequestAction.h:12