2021-09-08 16:58:25 +02:00

12 lines
245 B
Java

package com.hbm.entity.mob.siege;
import net.minecraft.entity.monster.EntitySkeleton;
import net.minecraft.world.World;
public class EntitySiegeSkeleton extends EntitySkeleton {
public EntitySiegeSkeleton(World world) {
super(world);
}
}