23 lines
641 B
Java
23 lines
641 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* org.jspecify.annotations.Nullable
|
|
*/
|
|
package net.minecraft.client.renderer.blockentity.state;
|
|
|
|
import net.minecraft.client.renderer.blockentity.state.BlockEntityRenderState;
|
|
import net.minecraft.world.level.block.entity.SignText;
|
|
import org.jspecify.annotations.Nullable;
|
|
|
|
public class SignRenderState
|
|
extends BlockEntityRenderState {
|
|
public @Nullable SignText frontText;
|
|
public @Nullable SignText backText;
|
|
public int textLineHeight;
|
|
public int maxTextLineWidth;
|
|
public boolean isTextFilteringEnabled;
|
|
public boolean drawOutline;
|
|
}
|
|
|