LeviLamina
Loading...
Searching...
No Matches
TestAction.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 Dimension;
11class ServerLevel;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 TestAction& operator=(TestAction const&);
25 TestAction(TestAction const&);
26 TestAction();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual void execute(::ServerLevel& level, ::Dimension& dimension) /*override*/;
33
34 // vIndex: 3
35 virtual bool operator==(::IRequestAction const& action) const /*override*/;
36
37 // vIndex: 0
38 virtual ~TestAction() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI void $execute(::ServerLevel& level, ::Dimension& dimension);
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCAPI static void** $vftable();
57 // NOLINTEND
58};
Definition Dimension.h:83
Definition IRequestAction.h:12
Definition ServerLevel.h:52
Definition TestAction.h:14
Definition Alias.h:14