Code/net/minecraft/world/level/border/BorderStatus.java

17 lines
320 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.level.border;
public enum BorderStatus {
GROWING(4259712),
SHRINKING(16724016),
STATIONARY(2138367);
private final int color;
private BorderStatus(final int p_61900_) {
this.color = p_61900_;
}
public int getColor() {
return this.color;
}
}