LeviLamina
Loading...
Searching...
No Matches
ActorCommandOrigin.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/CommandOrigin.h"
7#include "mc/server/commands/CommandOriginType.h"
8#include "mc/server/commands/CommandPermissionLevel.h"
9
10// auto generated forward declare list
11// clang-format off
12class Actor;
13class BlockPos;
14class CompoundTag;
15class Dimension;
16class Level;
17class Vec2;
18class Vec3;
19struct ActorUniqueID;
20// clang-format on
21
23public:
24 // member variables
25 // NOLINTBEGIN
26 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mEntityId;
27 ::ll::TypedStorage<8, 8, ::Level&> mLevel;
28 // NOLINTEND
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 0
34 virtual ~ActorCommandOrigin() /*override*/ = default;
35
36 // vIndex: 1
37 virtual ::std::string const& getRequestId() const /*override*/;
38
39 // vIndex: 2
40 virtual ::std::string getName() const /*override*/;
41
42 // vIndex: 3
43 virtual ::BlockPos getBlockPosition() const /*override*/;
44
45 // vIndex: 4
46 virtual ::Vec3 getWorldPosition() const /*override*/;
47
48 // vIndex: 5
49 virtual ::std::optional<::Vec2> getRotation() const /*override*/;
50
51 // vIndex: 6
52 virtual ::Level* getLevel() const /*override*/;
53
54 // vIndex: 7
55 virtual ::Dimension* getDimension() const /*override*/;
56
57 // vIndex: 8
58 virtual ::Actor* getEntity() const /*override*/;
59
60 // vIndex: 9
61 virtual ::CommandPermissionLevel getPermissionsLevel() const /*override*/;
62
63 // vIndex: 10
64 virtual ::std::unique_ptr<::CommandOrigin> clone() const /*override*/;
65
66 // vIndex: 18
67 virtual bool isSelectorExpansionAllowed() const /*override*/;
68
69 // vIndex: 23
70 virtual ::CommandOriginType getOriginType() const /*override*/;
71
72 // vIndex: 29
73 virtual ::CompoundTag serialize() const /*override*/;
74
75 // vIndex: 30
76 virtual bool isValid() const /*override*/;
77 // NOLINTEND
78
79public:
80 // destructor thunk
81 // NOLINTBEGIN
82
83 // NOLINTEND
84
85public:
86 // virtual function thunks
87 // NOLINTBEGIN
88 MCFOLD ::std::string const& $getRequestId() const;
89
90 MCAPI ::std::string $getName() const;
91
92 MCAPI ::BlockPos $getBlockPosition() const;
93
94 MCAPI ::Vec3 $getWorldPosition() const;
95
96 MCAPI ::std::optional<::Vec2> $getRotation() const;
97
98 MCFOLD ::Level* $getLevel() const;
99
100 MCAPI ::Dimension* $getDimension() const;
101
102 MCAPI ::Actor* $getEntity() const;
103
104 MCAPI ::CommandPermissionLevel $getPermissionsLevel() const;
105
106 MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const;
107
108 MCFOLD bool $isSelectorExpansionAllowed() const;
109
110 MCFOLD ::CommandOriginType $getOriginType() const;
111
112 MCAPI ::CompoundTag $serialize() const;
113
114 MCFOLD bool $isValid() const;
115 // NOLINTEND
116
117public:
118 // vftables
119 // NOLINTBEGIN
120 MCAPI static void** $vftable();
121 // NOLINTEND
122};
Definition ActorCommandOrigin.h:22
Definition Actor.h:104
Definition BlockPos.h:18
Definition CommandOrigin.h:32
Definition CompoundTag.h:13
Definition Dimension.h:83
Definition Level.h:234
Definition Vec2.h:5
Definition Vec3.h:10
Definition ActorUniqueID.h:5
Definition serialize.h:11