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.
12 lines
381 B
Java
12 lines
381 B
Java
package com.razz.dfashion.client;
|
|
|
|
import net.minecraft.client.renderer.blockentity.state.BlockEntityRenderState;
|
|
import net.minecraft.core.Direction;
|
|
import net.minecraft.resources.Identifier;
|
|
|
|
public class ClosetRenderState extends BlockEntityRenderState {
|
|
public boolean open = false;
|
|
public Direction facing = Direction.NORTH;
|
|
public Identifier variantId = null;
|
|
}
|