mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-03-06 10:12:36 +01:00
13 lines
202 B
Java
13 lines
202 B
Java
package com.eu.habbo.habbohotel.navigation;
|
|
|
|
public enum SearchAction {
|
|
NONE(0),
|
|
MORE(1),
|
|
BACK(2);
|
|
|
|
public final int type;
|
|
|
|
SearchAction(int type) {
|
|
this.type = type;
|
|
}
|
|
} |