summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/EntityWaterMob.java
blob: 64a9113de292f24576895b70faed3af77af94ab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
    }
}