001    package net.minecraft.client.gui;
002    
003    import cpw.mods.fml.relauncher.Side;
004    import cpw.mods.fml.relauncher.SideOnly;
005    
006    @SideOnly(Side.CLIENT)
007    public class GuiPlayerInfo
008    {
009        /** The string value of the object */
010        public final String name;
011    
012        /** Player name in lowercase. */
013        private final String nameinLowerCase;
014    
015        /** Player response time to server in milliseconds */
016        public int responseTime;
017    
018        public GuiPlayerInfo(String par1Str)
019        {
020            this.name = par1Str;
021            this.nameinLowerCase = par1Str.toLowerCase();
022        }
023    }