Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/navigation/ListMode.java
2019-05-26 21:15:26 +03:00

23 lines
421 B
Java

package com.eu.habbo.habbohotel.navigation;
public enum ListMode {
LIST(0),
THUMBNAILS(1),
FORCED_THUNBNAILS(2);
public final int type;
ListMode(int type) {
this.type = type;
}
public static ListMode fromType(int type) {
for (ListMode m : ListMode.values()) {
if (m.type == type) {
return m;
}
}
return LIST;
}
}