13 lines
202 B
Java
Raw Normal View History

2018-07-06 13:30:00 +00:00
package com.eu.habbo.habbohotel.navigation;
2019-05-26 21:14:53 +03:00
public enum SearchAction {
2018-07-06 13:30:00 +00:00
NONE(0),
MORE(1),
BACK(2);
public final int type;
2019-05-26 21:14:53 +03:00
SearchAction(int type) {
2018-07-06 13:30:00 +00:00
this.type = type;
}
}