13 lines
406 B
Java
13 lines
406 B
Java
|
package net.minecraft.client.renderer.entity.state;
|
||
|
|
||
|
import javax.annotation.Nullable;
|
||
|
import net.minecraft.world.level.block.state.BlockState;
|
||
|
import net.minecraftforge.api.distmarker.Dist;
|
||
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
||
|
|
||
|
@OnlyIn(Dist.CLIENT)
|
||
|
public class TntRenderState extends EntityRenderState {
|
||
|
public float fuseRemainingInTicks;
|
||
|
@Nullable
|
||
|
public BlockState blockState;
|
||
|
}
|