You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			608 B
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			22 lines
		
	
	
		
			608 B
		
	
	
	
		
			Java
		
	
package net.minecraft.client.gui;
 | 
						|
 | 
						|
import cpw.mods.fml.relauncher.Side;
 | 
						|
import cpw.mods.fml.relauncher.SideOnly;
 | 
						|
 | 
						|
@SideOnly(Side.CLIENT)
 | 
						|
public class GuiPlayerInfo
 | 
						|
{
 | 
						|
    /** The string value of the object */
 | 
						|
    public final String name;
 | 
						|
    /** Player name in lowercase. */
 | 
						|
    private final String nameinLowerCase;
 | 
						|
    /** Player response time to server in milliseconds */
 | 
						|
    public int responseTime;
 | 
						|
    private static final String __OBFID = "CL_00000888";
 | 
						|
 | 
						|
    public GuiPlayerInfo(String p_i1190_1_)
 | 
						|
    {
 | 
						|
        this.name = p_i1190_1_;
 | 
						|
        this.nameinLowerCase = p_i1190_1_.toLowerCase();
 | 
						|
    }
 | 
						|
} |