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 CommandOutputMessage() = default;
21
22public:
23 // member functions
24 // NOLINTBEGIN
26
28 ::CommandOutputMessageType type,
29 ::std::string const& msgId,
30 ::std::vector<::std::string>&& params = {}
31 );
32
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::CommandOutputMessage&& rhs);
40
41 MCAPI void*
42 $ctor(::CommandOutputMessageType type, ::std::string const& msgId, ::std::vector<::std::string>&& params);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCFOLD void $dtor();
49 // NOLINTEND
50};
Definition CommandOutputMessage.h:8