CraftBukkit/src/main/java/net/minecraft/server/EntityWaterMob.java
Andrew Ardill 5209e17e1b Adding all Entities into CraftBukkit.
These are needed to properly allow for determining class type, in
accordance with current practice.
2011-01-18 00:13:32 +08:00

29 lines
515 B
Java

package net.minecraft.server;
public class EntityWaterMob extends EntityCreature implements IAnimals {
public EntityWaterMob(World world) {
super(world);
}
public boolean d_() {
return true;
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
}
public void b(NBTTagCompound nbttagcompound) {
super.b(nbttagcompound);
}
public boolean b() {
return l.a(z);
}
public int c() {
return 120;
}
}