base mod created
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package net.minecraft.block;
|
||||
|
||||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.block.properties.PropertyDirection;
|
||||
|
||||
public abstract class BlockDirectional extends Block
|
||||
{
|
||||
public static final PropertyDirection FACING = PropertyDirection.create("facing");
|
||||
|
||||
protected BlockDirectional(Material materialIn)
|
||||
{
|
||||
super(materialIn);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user