mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-26 14:27:59 +01:00
15 lines
318 B
Java
15 lines
318 B
Java
package com.minelittlepony.pony.data;
|
|
|
|
public enum PonyLevel {
|
|
PONIES,
|
|
HUMANS,
|
|
BOTH;
|
|
|
|
public static PonyLevel valueFor(float index) {
|
|
PonyLevel[] values = values();
|
|
if (index < 0) {
|
|
index = 0;
|
|
}
|
|
return values[(int)Math.round(index) % values.length];
|
|
}
|
|
}
|