Updated to conform to new place services provided by party. Getting closer

to being able to launch a game.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@406 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-09 00:48:34 +00:00
parent 95ba5ef9cf
commit 31a0177480
6 changed files with 86 additions and 12 deletions
@@ -0,0 +1,26 @@
//
// $Id: LobbyController.java,v 1.1 2001/10/09 00:48:34 mdb Exp $
package com.threerings.micasa.lobby;
import com.threerings.cocktail.party.data.PlaceConfig;
import com.threerings.cocktail.party.client.PlaceController;
import com.threerings.cocktail.party.client.PlaceView;
import com.threerings.cocktail.party.util.PartyContext;
import com.threerings.micasa.Log;
public class LobbyController extends PlaceController
{
public void init (PartyContext ctx, PlaceConfig config)
{
super.init(ctx, config);
Log.info("Lobby controller created [config=" + config + "].");
}
protected PlaceView createPlaceView ()
{
return null;
}
}