20 lines
346 B
Java
20 lines
346 B
Java
package com.hypixel.hytale.component.dependency;
|
|
|
|
public enum OrderPriority {
|
|
CLOSEST(-1431655764),
|
|
CLOSE(-715827882),
|
|
NORMAL(0),
|
|
FURTHER(715827882),
|
|
FURTHEST(1431655764);
|
|
|
|
private final int value;
|
|
|
|
private OrderPriority(int value) {
|
|
this.value = value;
|
|
}
|
|
|
|
public int getValue() {
|
|
return this.value;
|
|
}
|
|
}
|