Making things work; moving lobby stuff entirely into lobby; simplifying.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@411 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-09 17:47:33 +00:00
parent 0546a29259
commit f8846ab016
7 changed files with 85 additions and 53 deletions
@@ -1,10 +1,12 @@
//
// $Id: MiCasaContext.java,v 1.1 2001/10/03 23:24:09 mdb Exp $
// $Id: MiCasaContext.java,v 1.2 2001/10/09 17:47:33 mdb Exp $
package com.threerings.micasa.util;
import com.threerings.parlor.util.ParlorContext;
import com.threerings.micasa.client.MiCasaFrame;
/**
* The micasa context encapsulates the contexts of all of the services
* that are used by the micasa client so that we can pass around one
@@ -14,4 +16,7 @@ import com.threerings.parlor.util.ParlorContext;
public interface MiCasaContext
extends ParlorContext
{
/** Returns a reference to the primary user interface frame. This can
* be used to set the top-level panel when we enter a game, etc. */
public MiCasaFrame getFrame ();
}