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.
18 lines
381 B
Java
18 lines
381 B
Java
package net.minecraft.block;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
public abstract class BlockDirectional extends Block
|
|
{
|
|
private static final String __OBFID = "CL_00000227";
|
|
|
|
protected BlockDirectional(Material p_i45401_1_)
|
|
{
|
|
super(p_i45401_1_);
|
|
}
|
|
|
|
public static int getDirection(int p_149895_0_)
|
|
{
|
|
return p_149895_0_ & 3;
|
|
}
|
|
} |