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.
		
		
		
		
		
			
		
			
				
	
	
		
			38 lines
		
	
	
		
			1008 B
		
	
	
	
		
			Java
		
	
			
		
		
	
	
			38 lines
		
	
	
		
			1008 B
		
	
	
	
		
			Java
		
	
package net.minecraft.client.gui;
 | 
						|
 | 
						|
import cpw.mods.fml.relauncher.Side;
 | 
						|
import cpw.mods.fml.relauncher.SideOnly;
 | 
						|
import net.minecraft.util.IChatComponent;
 | 
						|
 | 
						|
@SideOnly(Side.CLIENT)
 | 
						|
public class ChatLine
 | 
						|
{
 | 
						|
    /** GUI Update Counter value this Line was created at */
 | 
						|
    private final int updateCounterCreated;
 | 
						|
    private final IChatComponent lineString;
 | 
						|
    /** int value to refer to existing Chat Lines, can be 0 which means unreferrable */
 | 
						|
    private final int chatLineID;
 | 
						|
    private static final String __OBFID = "CL_00000627";
 | 
						|
 | 
						|
    public ChatLine(int p_i45000_1_, IChatComponent p_i45000_2_, int p_i45000_3_)
 | 
						|
    {
 | 
						|
        this.lineString = p_i45000_2_;
 | 
						|
        this.updateCounterCreated = p_i45000_1_;
 | 
						|
        this.chatLineID = p_i45000_3_;
 | 
						|
    }
 | 
						|
 | 
						|
    public IChatComponent func_151461_a()
 | 
						|
    {
 | 
						|
        return this.lineString;
 | 
						|
    }
 | 
						|
 | 
						|
    public int getUpdatedCounter()
 | 
						|
    {
 | 
						|
        return this.updateCounterCreated;
 | 
						|
    }
 | 
						|
 | 
						|
    public int getChatLineID()
 | 
						|
    {
 | 
						|
        return this.chatLineID;
 | 
						|
    }
 | 
						|
} |