minecraft-src/net/minecraft/world/level/border/BorderStatus.java
2025-07-04 01:41:11 +03:00

20 lines
361 B
Java

package net.minecraft.world.level.border;
public enum BorderStatus {
GROWING(4259712),
SHRINKING(16724016),
STATIONARY(2138367);
private final int color;
private BorderStatus(final int color) {
this.color = color;
}
/**
* Retrieves the color that the border should be, while in this state.
*/
public int getColor() {
return this.color;
}
}