LeviLamina
Loading...
Searching...
No Matches
CommandSoftEnumRegistry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/network/packet/SoftEnumUpdateType.h"
7
8// auto generated forward declare list
9// clang-format off
10class CommandRegistry;
11// clang-format on
12
13class CommandSoftEnumRegistry {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 8, ::CommandRegistry*> mRegistry;
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 CommandSoftEnumRegistry();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI explicit CommandSoftEnumRegistry(::CommandRegistry* registry);
28
29 MCAPI void
30 updateSoftEnum(::SoftEnumUpdateType type, ::std::string const& enumName, ::std::vector<::std::string> values);
31
32 MCAPI ~CommandSoftEnumRegistry();
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCFOLD void* $ctor(::CommandRegistry* registry);
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCFOLD void $dtor();
45 // NOLINTEND
46};
Definition CommandRegistry.h:51