Basic framework for vacuum arc furnace multiblock. Moved multiblock methods to MultiblockHelper.

This commit is contained in:
XevianLight
2026-01-18 21:06:14 -07:00
parent 557c2761a7
commit ea998165be
32 changed files with 1335 additions and 245 deletions

View File

@@ -0,0 +1,8 @@
package net.xevianlight.aphelion.util;
import net.minecraft.world.level.block.state.properties.BlockStateProperties;
import net.minecraft.world.level.block.state.properties.BooleanProperty;
public class AphelionBlockStateProperties extends BlockStateProperties {
public static final BooleanProperty FORMED = BooleanProperty.create("formed");
}