
These are needed to properly allow for determining class type, in accordance with current practice.
29 lines
515 B
Java
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;
|
|
}
|
|
}
|