Made GuiDraggingNumberInput fully functional

Linked GuiObjectManager to new Keybinding
Renamed RoundUtils#round to RoundUtils#round2Decimals for easier understanding
This commit is contained in:
CrushedPixel
2015-07-08 12:13:23 +02:00
parent 54f35eca03
commit e26e09a264
7 changed files with 76 additions and 19 deletions

View File

@@ -2,6 +2,6 @@ package eu.crushedpixel.replaymod.utils;
public class RoundUtils {
public static double round(double val) { return Math.round(val*100.0) / 100.0; }
public static double round2Decimals(double val) { return Math.round(val*100.0) / 100.0; }
}