Initial version of a miso context interface providing access to the

tile and scene manager objects.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@97 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-07-20 23:42:20 +00:00
parent 1fae8e43b1
commit ffe2c3169f
@@ -0,0 +1,21 @@
//
// $Id: MisoContext.java,v 1.1 2001/07/20 23:42:20 shaper Exp $
package com.threerings.miso.util;
import com.samskivert.util.Context;
import com.threerings.miso.tile.TileManager;
import com.threerings.miso.scene.SceneManager;
public interface MisoContext extends Context
{
/**
* Return a reference to the TileManager.
*/
public TileManager getTileManager ();
/**
* Return a reference to the SceneManager.
*/
public SceneManager getSceneManager ();
}