LeviLamina
Loading...
Searching...
No Matches
CandidateAdd.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace NetherNet {
6
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 CandidateAdd& operator=(CandidateAdd const&);
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI ::std::string ToString() const;
25 // NOLINTEND
26
27public:
28 // static functions
29 // NOLINTBEGIN
30 MCAPI static ::std::optional<::NetherNet::CandidateAdd> TryParse(::std::array<::std::string_view, 3> const& tokens);
31 // NOLINTEND
32
33public:
34 // static variables
35 // NOLINTBEGIN
36 MCAPI static ::std::string_view const& kIdentifier();
37 // NOLINTEND
38};
39
40} // namespace NetherNet
Definition CandidateAdd.h:7
Definition Alias.h:14