b6c69d1fca
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1197 542714f4-19e9-0310-aa3c-eee0fc999fb1
20 lines
453 B
Java
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 ();
|
|
}
|