LeviLamina
Loading...
Searching...
No Matches
SummonCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/ServerCommand.h"
7#include "mc/util/rotation_command_utils/FacingResult.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12class CommandOrigin;
13class CommandOutput;
14class CommandRegistry;
15class Vec3;
16// clang-format on
17
18class SummonCommand : public ::ServerCommand {
19public:
20 // member variables
21 // NOLINTBEGIN
34 // NOLINTEND
35
36public:
37 // prevent constructor by default
38 SummonCommand& operator=(SummonCommand const&);
39 SummonCommand(SummonCommand const&);
40
41public:
42 // virtual functions
43 // NOLINTBEGIN
44 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
45
46 virtual void postExecute(::Actor&) const;
47
48 virtual ~SummonCommand() /*override*/ = default;
49 // NOLINTEND
50
51public:
52 // member functions
53 // NOLINTBEGIN
54 MCAPI SummonCommand();
55
56 MCAPI ::RotationCommandUtils::FacingResult
57 _getFacingDirection(::CommandOrigin const& origin, ::CommandOutput& output, ::Vec3& faceTarget) const;
58 // NOLINTEND
59
60public:
61 // static functions
62 // NOLINTBEGIN
63 MCAPI static void setup(::CommandRegistry& registry);
64 // NOLINTEND
65
66public:
67 // constructor thunks
68 // NOLINTBEGIN
69 MCAPI void* $ctor();
70 // NOLINTEND
71
72public:
73 // virtual function thunks
74 // NOLINTBEGIN
75 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
76
77 MCFOLD void $postExecute(::Actor&) const;
78
79
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftable();
86 // NOLINTEND
87};
Definition Actor.h:105
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition CommandRegistry.h:47
Definition ServerCommand.h:22
static MCAPI void ** $vftable()
Definition Vec3.h:10
Definition Alias.h:14