Files
FastGhast/src/main/java/com/kasetoatz/fastGhast/config/Config.java

16 lines
372 B
Java

package com.kasetoatz.fastghast.config;
import com.terraformersmc.modmenu.api.ConfigScreenFactory;
import com.terraformersmc.modmenu.api.ModMenuApi;
import static com.kasetoatz.fastghast.Fastghast.CONFIG;
public class Config implements ModMenuApi
{
@Override
public ConfigScreenFactory<?> getModConfigScreenFactory()
{
return CONFIG::getUI;
}
}