LeviLamina
Loading...
Searching...
No Matches
FunctionAction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/chunk/IRequestAction.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
11class Dimension;
13class ServerLevel;
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 FunctionAction& operator=(FunctionAction const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 0
34 virtual ~FunctionAction() /*override*/;
35
36 // vIndex: 1
37 virtual void execute(::ServerLevel& level, ::Dimension& dimension) /*override*/;
38
39 // vIndex: 2
40 virtual void serialize(::CompoundTag& tag) /*override*/;
41
42 // vIndex: 3
43 virtual bool operator==(::IRequestAction const& action) const /*override*/;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCAPI void _printOriginInvalidError(::ServerLevel& level);
50
51 MCAPI void _printOutput(::ServerLevel& level, int successCount);
52 // NOLINTEND
53
54public:
55 // static functions
56 // NOLINTBEGIN
57 MCAPI static ::std::unique_ptr<::FunctionAction> load(::CompoundTag const& tag, ::ICommandOriginLoader& loader);
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63 MCAPI void $dtor();
64 // NOLINTEND
65
66public:
67 // virtual function thunks
68 // NOLINTBEGIN
69 MCAPI void $execute(::ServerLevel& level, ::Dimension& dimension);
70
71 MCAPI void $serialize(::CompoundTag& tag);
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCAPI static void** $vftable();
78 // NOLINTEND
79};
Definition CompoundTag.h:13
Definition Dimension.h:83
Definition FunctionAction.h:16
Definition ICommandOriginLoader.h:11
Definition IRequestAction.h:12
Definition ServerLevel.h:52
Definition Alias.h:14
Definition serialize.h:11