LeviLamina
Loading...
Searching...
No Matches
ScriptActorCommandOrigin.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/commands/ScriptCommandOrigin.h"
7#include "mc/server/commands/CommandPermissionLevel.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12class CommandOrigin;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 0
32 virtual ~ScriptActorCommandOrigin() /*override*/;
33
34 // vIndex: 8
35 virtual ::Actor* getEntity() const /*override*/;
36
37 // vIndex: 10
38 virtual ::std::unique_ptr<::CommandOrigin> clone() const /*override*/;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
45 ::Actor const& actor,
46 ::std::function<void(int, ::std::string&&)> outputCallback,
47 ::std::optional<::CommandPermissionLevel> permissionLevel
48 );
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(
55 ::Actor const& actor,
56 ::std::function<void(int, ::std::string&&)> outputCallback,
57 ::std::optional<::CommandPermissionLevel> permissionLevel
58 );
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCAPI void $dtor();
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
70 MCAPI ::Actor* $getEntity() const;
71
72 MCAPI ::std::unique_ptr<::CommandOrigin> $clone() const;
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCAPI static void** $vftable();
79 // NOLINTEND
80};
Definition Actor.h:104
Definition CommandOrigin.h:32
Definition ScriptActorCommandOrigin.h:15
Definition ScriptCommandOrigin.h:21
Definition Alias.h:14