Advertisement
cgorrillaha

Untitled

Dec 3rd, 2021
862
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. package Zombie2021;
  2.  
  3. import java.util.Arrays;
  4.  
  5. public class ApocMain {
  6.     public static void main(String[] args) {
  7.         //(int ammo, int personCount, int food)
  8.         Person  p=new Person(Utilities.START_AMMO, Utilities.NUM_PEOPLE, Utilities.START_FOOD);
  9.         Apoc ap=new Apoc(Utilities.NUM_DAYS, p);
  10.         ap.runSimulation();
  11.     }
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement