Guest User

Untitled

a guest
Mar 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public static class Player implements Serializable {
  2. //Self Explanitory
  3. public static float Health;
  4. public static double Money;
  5. //Size of your crew
  6. public static int crewsize;
  7. //number of transports
  8. public static int boats, planes, cars, bikes,trucks;
  9. //Inventory
  10. public static int[] inventory = new int[4];
  11. //computer
  12. public static boolean computer;
  13. }
Add Comment
Please, Sign In to add comment