22 lines
600 B
Java
22 lines
600 B
Java
package org.bukkit.craftbukkit.block;
|
|
|
|
import net.minecraft.world.level.block.entity.TrialSpawnerBlockEntity;
|
|
import org.bukkit.World;
|
|
import org.bukkit.block.TrialSpawner;
|
|
|
|
public class CraftTrialSpawner extends CraftBlockEntityState<TrialSpawnerBlockEntity> implements TrialSpawner {
|
|
|
|
public CraftTrialSpawner(World world, TrialSpawnerBlockEntity tileEntity) {
|
|
super(world, tileEntity);
|
|
}
|
|
|
|
protected CraftTrialSpawner(CraftTrialSpawner state) {
|
|
super(state);
|
|
}
|
|
|
|
@Override
|
|
public CraftTrialSpawner copy() {
|
|
return new CraftTrialSpawner(this);
|
|
}
|
|
}
|