Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/interactions/totems/TotemColor.java

25 lines
458 B
Java
Raw Normal View History

2019-12-28 02:52:09 +01:00
package com.eu.habbo.habbohotel.items.interactions.totems;
public enum TotemColor {
NONE(0),
RED(1),
YELLOW(2),
BLUE(3);
public final int color;
TotemColor(int color) {
this.color = color;
}
public static TotemColor fromInt(int color) {
for(TotemColor totemColor : TotemColor.values()) {
if(totemColor.color == color)
return totemColor;
}
return NONE;
}
}