Implemented most of network settings control

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@425 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-06-13 22:29:28 +02:00
parent 741a94953f
commit 570187c950
12 changed files with 356 additions and 191 deletions

View file

@ -85,7 +85,7 @@ public class PlayerSettings implements Serializable {
* @param turnControlType
* player's TurnControlFactory type
*/
public void setTurnControlType(Type turnControlType) {
public void setType(Type turnControlType) {
this.turnControlType = turnControlType;
}
@ -94,7 +94,7 @@ public class PlayerSettings implements Serializable {
*
* @return player's TurnControlFactory type
*/
public Type getTurnControlType() {
public Type getType() {
return turnControlType;
}
}