LeviLamina
Loading...
Searching...
No Matches
CommandOutputMessage.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/server/commands/CommandOutputMessageType.h"
7
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::CommandOutputMessageType mType;
13 ::std::string mMessageId;
14 ::std::vector<::std::string> mParams;
15 // NOLINTEND
16
17public:
18 CommandOutputMessage& operator=(CommandOutputMessage const&) = default;
20
21public:
22 // member functions
23 // NOLINTBEGIN
25
27 ::CommandOutputMessageType type,
28 ::std::string const& msgId,
29 ::std::vector<::std::string>&& params = {}
30 );
31
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCAPI void* $ctor(::CommandOutputMessage&& rhs);
39
40 MCAPI void*
41 $ctor(::CommandOutputMessageType type, ::std::string const& msgId, ::std::vector<::std::string>&& params);
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCFOLD void $dtor();
48 // NOLINTEND
49};
Definition CommandOutputMessage.h:8