7class ServerCommandRegisterEvent final :
public CommandRegisterEvent {
8 bool mClientHostedServer;
11 constexpr explicit ServerCommandRegisterEvent(
CommandRegistry& commandRegistry,
bool clientHostedServer)
12 : CommandRegisterEvent(commandRegistry),
13 mClientHostedServer(clientHostedServer) {}
17 LLNDAPI
bool isClientHostedServer()
const;