implementazione persistenza
This commit is contained in:
parent
406a5647b8
commit
eac6e43420
33 changed files with 1876 additions and 736 deletions
|
|
@ -11,7 +11,6 @@ public class Config {
|
|||
public static String GameServerURI = "localhost";
|
||||
public static Integer GameServerPort = 10000;
|
||||
|
||||
|
||||
public static String WordsReceiverServerURI = "localhost";
|
||||
public static Integer WordsReceiverServerPort = 10001;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
package models;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* Created by loke on 18/06/2017.
|
||||
*/
|
||||
public class User {
|
||||
public class User implements Serializable{
|
||||
|
||||
public String userName;
|
||||
public String password;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue