LeviLamina
Loading...
Searching...
No Matches
TakePictureCommand.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/Command.h"
7#include "mc/server/commands/CommandPosition.h"
8#include "mc/server/commands/CommandSelector.h"
9
10// auto generated forward declare list
11// clang-format off
12class Actor;
13class CommandOrigin;
14class CommandOutput;
15class CommandRegistry;
16class Player;
17// clang-format on
18
19class TakePictureCommand : public ::Command {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 200, ::CommandSelector<::Actor>> mCameraTargets;
24 ::ll::TypedStorage<8, 200, ::CommandSelector<::Player>> mPlayerTargets;
25 ::ll::TypedStorage<4, 16, ::CommandPosition> mCameraSpawnPos;
26 ::ll::TypedStorage<1, 1, bool> mCameraPositionProvided;
27 ::ll::TypedStorage<1, 1, bool> mCameraTargetProvided;
28 // NOLINTEND
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual void execute(::CommandOrigin const& origin, ::CommandOutput& output) const /*override*/;
34
35 virtual ~TakePictureCommand() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI TakePictureCommand();
42 // NOLINTEND
43
44public:
45 // static functions
46 // NOLINTBEGIN
47 MCAPI static void setup(::CommandRegistry& registry);
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCAPI void* $ctor();
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI void $execute(::CommandOrigin const& origin, ::CommandOutput& output) const;
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
Definition Actor.h:106
Definition CommandOrigin.h:32
Definition CommandOutput.h:20
Definition CommandRegistry.h:50
Definition Command.h:17
Definition Player.h:129
static MCAPI void ** $vftable()