mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
12 lines
245 B
Java
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);
|
|
}
|
|
}
|