Advertisement
Guest User

Untitled

a guest
Nov 7th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public static int totalPlayers;
  2. public static int maxPlayers = 10;
  3.  
  4. // Public Methods
  5. public Player()
  6. {
  7. totalPlayers++;
  8. }
  9.  
  10. public static boolean gameFull(){
  11. if(totalPlayers >= maxPlayers){
  12. return true;
  13. }
  14. else{
  15. return false;
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement