Files
narya/src/java/com/threerings/whirled/util/WhirledContext.java
T
Michael Bayne 89293034c8 A whirlwind of whirled updates. Moving from scene to scene seems to mostly
work now. Scene activation is implemented. Some tests are written.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@242 542714f4-19e9-0310-aa3c-eee0fc999fb1
2001-08-14 06:51:07 +00:00

20 lines
504 B
Java

//
// $Id: WhirledContext.java,v 1.1 2001/08/14 06:51:07 mdb Exp $
package com.threerings.whirled.util;
import com.threerings.cocktail.party.util.PartyContext;
import com.threerings.whirled.client.SceneManager;
/**
* The whirled context provides access to the various managers, etc. that
* are needed by the whirled client code.
*/
public interface WhirledContext extends PartyContext
{
/**
* Returns a reference to the scene manager.
*/
public SceneManager getSceneManager ();
}