Revamped "persona selection" support. Things now actually work, and in as

sensible a way as we can hope for.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1717 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-09-19 23:36:59 +00:00
parent 0df0ec348d
commit ba4985053f
10 changed files with 301 additions and 135 deletions
@@ -1,12 +1,10 @@
//
// $Id: CrowdClient.java,v 1.9 2002/09/17 01:23:09 mdb Exp $
// $Id: CrowdClient.java,v 1.10 2002/09/19 23:36:59 mdb Exp $
package com.threerings.crowd.server;
import com.threerings.presents.server.PresentsClient;
import com.threerings.crowd.data.BodyObject;
/**
* The crowd client extends the presents client but doesn't really do
* anything at present. It exists mainly so that implementation systems
@@ -15,12 +13,4 @@ import com.threerings.crowd.data.BodyObject;
*/
public class CrowdClient extends PresentsClient
{
// documentation inherited
public void setUsername (String username)
{
super.setUsername(username);
// update the username in our body object
((BodyObject)_clobj).setUsername(username);
}
}