Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package Zombie2021;
- public class Utilities {
- public static final int NUM_PEOPLE=25;
- public static final int NUM_DAYS=10;
- public static final int START_AMMO=150;
- public static final int START_FOOD=150;
- //randomInRange()
- public static int randomInRange(int min, int max){
- return (int)(Math.random()*(max-min+1))+min;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment