Files
narya/src/java/com/threerings/miso/util/MisoContext.java
T
Michael Bayne b6c69d1fca Return a MisoTileManager now.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1197 542714f4-19e9-0310-aa3c-eee0fc999fb1
2002-04-06 02:04:23 +00:00

20 lines
453 B
Java

//
// $Id: MisoContext.java,v 1.9 2002/04/06 02:04:23 mdb Exp $
package com.threerings.miso.util;
import com.threerings.miso.tile.MisoTileManager;
/**
* Provides Miso code with access to the managers that it needs to do its
* thing.
*/
public interface MisoContext
{
/**
* Returns a reference to the tile manager. This reference is valid
* for the lifetime of the application.
*/
public MisoTileManager getTileManager ();
}