mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-25 05:48:00 +01:00
Remove deprecated override
This commit is contained in:
parent
94ab034c48
commit
e1339fb2a8
2 changed files with 2 additions and 11 deletions
|
@ -30,7 +30,6 @@ public class MineLPHDSkins extends SkinsProxy implements ClientModInitializer {
|
|||
|
||||
static SkinType seaponySkinType;
|
||||
|
||||
|
||||
@Override
|
||||
public void onInitializeClient() {
|
||||
SkinsProxy.instance = this;
|
||||
|
|
|
@ -1,21 +1,13 @@
|
|||
package com.minelittlepony.client.modmenu;
|
||||
|
||||
import io.github.prospector.modmenu.api.ConfigScreenFactory;
|
||||
import io.github.prospector.modmenu.api.ModMenuApi;
|
||||
import net.minecraft.client.gui.screen.Screen;
|
||||
|
||||
import com.minelittlepony.client.GuiPonySettings;
|
||||
|
||||
import java.util.function.Function;
|
||||
|
||||
public class MineLPModMenuFactory implements ModMenuApi {
|
||||
|
||||
@Override
|
||||
public String getModId() {
|
||||
return "minelp";
|
||||
}
|
||||
|
||||
@Override
|
||||
public Function<Screen, ? extends Screen> getConfigScreenFactory() {
|
||||
public ConfigScreenFactory<?> getModConfigScreenFactory() {
|
||||
return GuiPonySettings::new;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue