22 lines
583 B
Java
22 lines
583 B
Java
package org.bukkit.craftbukkit.block;
|
|
|
|
import net.minecraft.world.level.block.entity.BrushableBlockEntity;
|
|
import org.bukkit.World;
|
|
import org.bukkit.block.SuspiciousSand;
|
|
|
|
public class CraftSuspiciousSand extends CraftBrushableBlock implements SuspiciousSand {
|
|
|
|
public CraftSuspiciousSand(World world, BrushableBlockEntity tileEntity) {
|
|
super(world, tileEntity);
|
|
}
|
|
|
|
protected CraftSuspiciousSand(CraftSuspiciousSand state) {
|
|
super(state);
|
|
}
|
|
|
|
@Override
|
|
public CraftSuspiciousSand copy() {
|
|
return new CraftSuspiciousSand(this);
|
|
}
|
|
}
|