better caching for both appearances and meshed models

This commit is contained in:
2024-03-06 22:10:11 +01:00
parent de7acfee50
commit 5f87489939
46 changed files with 364 additions and 278 deletions

View File

@@ -0,0 +1,10 @@
package fr.adrien1106.reframed.util.blocks;
import net.minecraft.state.property.BooleanProperty;
import net.minecraft.state.property.EnumProperty;
public class BlockProperties {
public static final BooleanProperty LIGHT = BooleanProperty.of("emits_light");
public static final EnumProperty<Corner> CORNER = EnumProperty.of("corner", Corner.class);
public static final EnumProperty<StairShape> STAIR_SHAPE = EnumProperty.of("shape", StairShape.class);
}