mirror of
https://github.com/squeek502/Squake.git
synced 2025-09-07 02:58:45 -04:00
34 lines
641 B
Java
34 lines
641 B
Java
package squeek.quakemovement;
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.client.gui.GuiScreen;
|
|
import net.minecraftforge.fml.client.IModGuiFactory;
|
|
|
|
import java.util.Set;
|
|
|
|
public class ModConfigGuiFactory implements IModGuiFactory
|
|
{
|
|
@Override
|
|
public void initialize(Minecraft minecraftInstance)
|
|
{
|
|
}
|
|
|
|
@Override
|
|
public Class<? extends GuiScreen> mainConfigGuiClass()
|
|
{
|
|
return ModConfigGui.class;
|
|
}
|
|
|
|
@Override
|
|
public Set<RuntimeOptionCategoryElement> runtimeGuiCategories()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public RuntimeOptionGuiHandler getHandlerFor(RuntimeOptionCategoryElement element)
|
|
{
|
|
return null;
|
|
}
|
|
}
|