mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-20 19:34:23 +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];
|
|
}
|
|
}
|