001package net.minecraft.stats;
002
003import cpw.mods.fml.relauncher.Side;
004import cpw.mods.fml.relauncher.SideOnly;
005
006public interface IStatType
007{
008 @SideOnly(Side.CLIENT)
009
010 /**
011 * Formats a given stat for human consumption.
012 */
013 String format(int i);
014}