Guest User

Untitled

a guest
Jan 24th, 2017
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class Account
  2. {
  3. String username;
  4. int password;
  5. boolean admin;
  6.  
  7. public Account(String user, int passcode, boolean admin)
  8. {
  9. this.username = user;
  10. this.password = passcode;
  11. this.admin = admin;
  12. }
  13.  
  14. }
Add Comment
Please, Sign In to add comment