final/src/GlobalState.java

7 lines
180 B
Java
Raw Normal View History

2022-06-07 19:46:45 +01:00
public class GlobalState {
public static final int second = 10;
2022-06-08 19:32:31 +01:00
public static int randInt(int low, int high){
return (int)(Math.random()*(high-low+1))+low;
}
2022-06-07 19:46:45 +01:00
}