Now players may choose avatars in Preferences Dialog.

This commit is contained in:
magenoxx 2011-09-20 21:05:22 +04:00
parent eaf87ae950
commit 9f868daf3e
9 changed files with 1028 additions and 176 deletions

View file

@ -47,6 +47,8 @@ public class Connection {
private int proxyPort;
private String proxyUsername;
private String proxyPassword;
private int avatarId;
private static final String serialization = "?serializationtype=jboss";
private static final String transport = "bisocket";
@ -195,4 +197,12 @@ public class Connection {
return null;
}
public int getAvatarId() {
return avatarId;
}
public void setAvatarId(int avatarId) {
this.avatarId = avatarId;
}
}