top.hendrixshen.magiclib.carpet.api.CarpetExtensionCompatApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magiclib-1_20_1 Show documentation
Show all versions of magiclib-1_20_1 Show documentation
To beat magic with magic :(
The newest version!
/*
* Copyright (c) Copyright 2020 - 2022 The Cat Town Craft and contributors.
* This source code is subject to the terms of the GNU Lesser General Public
* License, version 3. If a copy of the LGPL was not distributed with this
* file, You can obtain one at: https://www.gnu.org/licenses/lgpl-3.0.txt
*/
package top.hendrixshen.magiclib.carpet.api;
import carpet.CarpetExtension;
import com.mojang.brigadier.CommandDispatcher;
import top.hendrixshen.magiclib.carpet.impl.WrappedSettingManager;
import java.util.Collections;
import java.util.Map;
import net.minecraft.class_2168;
import net.minecraft.class_7157;
//#if MC > 11802
import carpet.api.settings.SettingsManager;
public interface CarpetExtensionCompatApi extends CarpetExtension {
@Override
//#if MC >= 11901
default void registerCommands(CommandDispatcher dispatcher, class_7157 commandBuildContext) {
this.registerCommandCompat(dispatcher);
//#else
//$$ default void registerCommands(CommandDispatcher dispatcher) {
//$$ this.registerCommandCompat(dispatcher);
//#endif
}
@Override
//#if MC >= 11901
default SettingsManager extensionSettingsManager() {
//#else
//$$ default SettingsManager customSettingsManager() {
//#endif
return this.getSettingsManagerCompat();
}
//#if MC > 11404
@Override
default Map canHasTranslations(String lang) {
return this.canHasTranslationsCompat(lang);
}
//#endif
WrappedSettingManager getSettingsManagerCompat();
void registerCommandCompat(CommandDispatcher dispatcher);
default Map canHasTranslationsCompat(String lang) {
return Collections.emptyMap();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy