Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.81 KB | None | 0 0
  1. package wordz.game;
  2.  
  3. import wordz.shared.WWWordzException;
  4.  
  5. public class Players extends java.lang.Object implements java.io.Serializable {
  6.     private static final long serialVersionUID = 1L;
  7.    
  8.     static Players players;
  9.    
  10.     public static Players getInstance() {
  11.         return players;
  12.     }
  13.    
  14.     public static java.io.File getHome() {
  15.         //WIP
  16.     }
  17.    
  18.     public static void setHome(java.io.File home) {
  19.         //WIP
  20.     }
  21.    
  22.     public boolean verify(java.lang.String nick, java.lang.String password) {
  23.         //WIP
  24.     }
  25.    
  26.     public void resetPoints(java.lang.String nick) throws WWWordzException {
  27.         //WIP
  28.     }
  29.    
  30.     public void addPoints(java.lang.String nick, int points) throws WWWordzException {
  31.         //WIP
  32.     }
  33.    
  34.     public Player getPlayer(java.lang.String nick) {
  35.         //WIP
  36.     }
  37.    
  38.     public void cleanup() {
  39.         //TESTING PURPUSES ONLY
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement