NumberUtil.java
package com.hypixel.hytale.math.util;
public class NumberUtil {
public NumberUtil() {
}
public static short sum(short a, short b) {
return (short)(a + b);
}
public static short subtract(short a, short b) {
return (short)(a - b);
}
}