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

28 lines
449 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
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;
}
}