LeviLamina
Loading...
Searching...
No Matches
CommandOutputParameter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/CommandSelectorResults.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11class BlockPos;
12class Player;
13// clang-format on
14
15class CommandOutputParameter {
16public:
17 // CommandOutputParameter inner types define
18 enum class NoCountType : int {
19 NoCount = 0,
20 };
21
22public:
23 // member variables
24 // NOLINTBEGIN
25 ::std::string mString;
26 int mCount;
27 // NOLINTEND
28
29 operator std::string const&() const { return mString; }
30
31public:
32 // prevent constructor by default
33 CommandOutputParameter();
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI explicit CommandOutputParameter(::CommandSelectorResults<::Actor> const&);
39
40 MCAPI explicit CommandOutputParameter(::CommandSelectorResults<::Player> const& players);
41
42 MCAPI explicit CommandOutputParameter(::std::vector<::Actor const*> const&);
43
44 MCAPI explicit CommandOutputParameter(::std::vector<::Player const*> const& players);
45
46 MCAPI explicit CommandOutputParameter(::std::vector<::std::string> const& strings);
47
48 MCAPI explicit CommandOutputParameter(char const* text);
49
50 MCAPI explicit CommandOutputParameter(::BlockPos value);
51
52 MCAPI ~CommandOutputParameter();
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCAPI void* $ctor(::CommandSelectorResults<::Actor> const&);
59
60 MCFOLD void* $ctor(::CommandSelectorResults<::Player> const& players);
61
62 MCAPI void* $ctor(::std::vector<::Actor const*> const&);
63
64 MCFOLD void* $ctor(::std::vector<::Player const*> const& players);
65
66 MCAPI void* $ctor(::std::vector<::std::string> const& strings);
67
68 MCAPI void* $ctor(char const* text);
69
70 MCAPI void* $ctor(::BlockPos value);
71 // NOLINTEND
72
73public:
74 // destructor thunk
75 // NOLINTBEGIN
76 MCFOLD void $dtor();
77 // NOLINTEND
78};
Definition Actor.h:105
Definition BlockPos.h:19
Definition CommandSelectorResults.h:6
Definition Player.h:125