package net.minecraft.world.level.border;

public enum BorderStatus {

    GROWING(4259712), SHRINKING(16724016), STATIONARY(2138367);

    private final int color;

    private BorderStatus(int i) {
        this.color = i;
    }

    public int a() {
        return this.color;
    }
}
