add visual indicator for numeric values in the option menu

This commit is contained in:
yugecin
2016-11-20 23:06:47 +01:00
parent b6f2101c16
commit 7898b669f5
2 changed files with 23 additions and 2 deletions

View File

@@ -1376,7 +1376,20 @@ public class Options {
} else if (type == OptionType.BOOLEAN)
bool = Boolean.parseBoolean(s);
}
};
public boolean isDragOption() {
return type == OptionType.NUMERIC;
}
public int getMinValue() {
return min;
}
public int getMaxValue() {
return max;
}
}
/** Map of option display names to GameOptions. */
private static HashMap<String, GameOption> optionMap;