Added serverSocketChannel for game creation

This commit is contained in:
Lorenzo Iovino 2017-06-18 14:13:31 +02:00
parent 546e341433
commit 48705f7e76
30 changed files with 1787 additions and 606 deletions

View file

@ -0,0 +1,15 @@
package models;
/**
* Created by loke on 18/06/2017.
*/
public class User {
public String userName;
public User(String userName){
this.userName = userName;
}
}