This commit is contained in:
Lorenzo Iovino 2017-06-29 22:30:39 +02:00
parent 429eb1cb02
commit 5512f1a358
52 changed files with 5537 additions and 1557 deletions

View file

@ -9,9 +9,10 @@ public class User {
public String password;
public Integer score = 0;
public User(String userName, String password){
public User(String userName, String password, Integer score){
this.userName = userName;
this.password = password;
this.score = score;
}
public void addScore(Integer score){