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