summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/GroupDataZombie.java
blob: 340af90fce8a13f891e825563a4b6d15180d2190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package net.minecraft.server;

// CraftBukkit - package-private import
class GroupDataZombie implements GroupDataEntity {

    public boolean a;
    public boolean b;
    final EntityZombie c;

    private GroupDataZombie(EntityZombie entityzombie, boolean flag, boolean flag1) {
        this.c = entityzombie;
        this.a = false;
        this.b = false;
        this.a = flag;
        this.b = flag1;
    }

    GroupDataZombie(EntityZombie entityzombie, boolean flag, boolean flag1, EmptyClassZombie emptyclasszombie) {
        this(entityzombie, flag, flag1);
    }
}