Progress on Ye Olde Parlor services.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@363 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-01 02:56:35 +00:00
parent 278e1f0f6e
commit 2139d4883a
10 changed files with 519 additions and 0 deletions
@@ -0,0 +1,19 @@
//
// $Id: ParlorContext.java,v 1.1 2001/10/01 02:56:35 mdb Exp $
package com.threerings.parlor.util;
import com.threerings.cocktail.party.util.PartyContext;
import com.threerings.parlor.client.ParlorDirector;
/**
* The parlor context provides access to the various managers, etc. that
* are needed by the parlor client code.
*/
public interface ParlorContext extends PartyContext
{
/**
* Returns a reference to the parlor director.
*/
public ParlorDirector getParlorDirector ();
}