Guest User

Untitled

a guest
Mar 21st, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package nea;
  7.  
  8. /**
  9. *
  10. * @author 9400
  11. */
  12. public class general {
  13. int hiscore;
  14. String username, password;
  15.  
  16. general(int hiscore, String username, String password){
  17. this.hiscore = hiscore;
  18. this.username = username;
  19. this.password = password;
  20. }
  21. @Override
  22. public String toString(){
  23. return ("[" + hiscore + "," + username + "," + password + "]");
  24. }
  25. }
Add Comment
Please, Sign In to add comment