Added code to handle displaying the user interface for a place once we

have actually entered the place. It's not tied to a particular UI toolkit
and this requires coordination between the client implementation and the
place implementation, but that seems better than the alternative of tying
the Parlor code to Swing or similar.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@408 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-09 17:20:03 +00:00
parent 61a2c30859
commit c9dfd6ef45
3 changed files with 29 additions and 4 deletions
@@ -1,5 +1,5 @@
//
// $Id: TestClient.java,v 1.4 2001/10/01 22:14:55 mdb Exp $
// $Id: TestClient.java,v 1.5 2001/10/09 17:20:03 mdb Exp $
package com.threerings.cocktail.party.client.test;
@@ -121,6 +121,11 @@ public class TestClient
{
return _occmgr;
}
public void setPlaceView (PlaceView view)
{
// nothing to do because we don't create views
}
}
protected Config _config;