Files
Mohammad-Ali Minaie b86dedad2f base mod created
2018-10-08 09:07:47 -04:00

13 lines
336 B
Java

package net.minecraft.util;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
@SideOnly(Side.CLIENT)
public interface ITabCompleter
{
/**
* Sets the list of tab completions, as long as they were previously requested.
*/
void setCompletions(String... newCompletions);
}