Created SceneCodes, moved scene invocation service codes into there.

Changed SceneManager to SceneDirector. Updated to deal with
LocationManager name change. Clean, clean, clean.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@369 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-01 22:16:02 +00:00
parent 027bb29769
commit 64bed2eb12
6 changed files with 54 additions and 39 deletions
@@ -1,10 +1,10 @@
//
// $Id: WhirledContext.java,v 1.1 2001/08/14 06:51:07 mdb Exp $
// $Id: WhirledContext.java,v 1.2 2001/10/01 22:16:02 mdb Exp $
package com.threerings.whirled.util;
import com.threerings.cocktail.party.util.PartyContext;
import com.threerings.whirled.client.SceneManager;
import com.threerings.whirled.client.SceneDirector;
/**
* The whirled context provides access to the various managers, etc. that
@@ -13,7 +13,7 @@ import com.threerings.whirled.client.SceneManager;
public interface WhirledContext extends PartyContext
{
/**
* Returns a reference to the scene manager.
* Returns a reference to the scene director.
*/
public SceneManager getSceneManager ();
public SceneDirector getSceneDirector ();
}