13 lines
		
	
	
	
		
			389 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			389 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.client.renderer.entity.state;
 | |
| 
 | |
| import net.fabricmc.api.EnvType;
 | |
| import net.fabricmc.api.Environment;
 | |
| import net.minecraft.world.level.block.state.BlockState;
 | |
| import org.jetbrains.annotations.Nullable;
 | |
| 
 | |
| @Environment(EnvType.CLIENT)
 | |
| public class TntRenderState extends EntityRenderState {
 | |
| 	public float fuseRemainingInTicks;
 | |
| 	@Nullable
 | |
| 	public BlockState blockState;
 | |
| }
 |