added utils class

retina-display
Marcus Gosselin 2015-04-04 23:55:47 -04:00
parent 2009d42eab
commit dd5d270ef3
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package MAndEngine;
public class Utils {
public static int rand(int low, int high) {
return (int)(Math.random() * (high - low + 1) + low);
}
}