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
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 // member functions
33 // NOLINTBEGIN
34 MCAPI explicit CommandOutputParameter(::std::vector<::Player const*> const& players);
35
36 MCAPI explicit CommandOutputParameter(::std::vector<::Actor const*> const&);
37
39
41
42 MCAPI explicit CommandOutputParameter(::std::vector<::std::string> const& strings);
43
44 MCAPI explicit CommandOutputParameter(char const* text);
45
46 MCAPI explicit CommandOutputParameter(::BlockPos value);
47
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCFOLD void* $ctor(::std::vector<::Player const*> const& players);
55
56 MCAPI void* $ctor(::std::vector<::Actor const*> const&);
57
58 MCFOLD void* $ctor(::CommandSelectorResults<::Player> const& players);
59
60 MCAPI void* $ctor(::CommandSelectorResults<::Actor> const&);
61
62 MCAPI void* $ctor(::std::vector<::std::string> const& strings);
63
64 MCAPI void* $ctor(char const* text);
65
66 MCAPI void* $ctor(::BlockPos value);
67 // NOLINTEND
68
69public:
70 // destructor thunk
71 // NOLINTBEGIN
72 MCFOLD void $dtor();
73 // NOLINTEND
74};
Definition Actor.h:104
Definition BlockPos.h:18
Definition CommandOutputParameter.h:15
Definition CommandSelectorResults.h:6
Definition Player.h:119