Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/navigation/ListMode.java

23 lines
421 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.navigation;
2019-05-26 20:14:53 +02:00
public enum ListMode {
2018-07-06 15:30:00 +02:00
LIST(0),
THUMBNAILS(1),
FORCED_THUNBNAILS(2);
public final int type;
2019-05-26 20:14:53 +02:00
ListMode(int type) {
2018-07-06 15:30:00 +02:00
this.type = type;
}
2019-05-26 20:14:53 +02:00
public static ListMode fromType(int type) {
for (ListMode m : ListMode.values()) {
if (m.type == type) {
2018-07-06 15:30:00 +02:00
return m;
}
}
return LIST;
}
}