LeviLamina
Loading...
Searching...
No Matches
FunctionEntry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/functions/FunctionQueueOrder.h"
7#include "mc/server/commands/functions/FunctionState.h"
8#include "mc/server/commands/functions/IFunctionEntry.h"
9
10// auto generated forward declare list
11// clang-format off
12class CommandOrigin;
13class FunctionManager;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 24, ::std::vector<::std::unique_ptr<::IFunctionEntry>>> mCommandList;
21 ::ll::TypedStorage<1, 1, ::FunctionState> mState;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ~FunctionEntry() /*override*/ = default;
28
29 virtual void
30 execute(::FunctionManager& functionManager, ::CommandOrigin const& origin, ::FunctionQueueOrder order) /*override*/;
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCFOLD ::FunctionState getErrorState() const;
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCAPI void $execute(::FunctionManager& functionManager, ::CommandOrigin const& origin, ::FunctionQueueOrder order);
43
44
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCNAPI static void** $vftable();
51 // NOLINTEND
52};
Definition CommandOrigin.h:32
Definition FunctionEntry.h:16
static MCAPI void ** $vftable()
Definition FunctionManager.h:22
Definition IFunctionEntry.h:14