ae1052a371
things compile and most things run so this is a good time to checkpoint. Let me recall: - Refactored the whole scene deal. - Revamped the XML parser stuff (now uses Digester). - Rethought the tile management. - Started tile bundle stuff. - Wrote some tests. - Did a bit of Mike-ification. Onward and moreward. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@621 542714f4-19e9-0310-aa3c-eee0fc999fb1
19 lines
450 B
Java
19 lines
450 B
Java
//
|
|
// $Id: MisoContext.java,v 1.7 2001/11/18 04:09:23 mdb Exp $
|
|
|
|
package com.threerings.miso.util;
|
|
|
|
import com.samskivert.util.Context;
|
|
|
|
import com.threerings.media.ImageManager;
|
|
import com.threerings.media.tile.TileManager;
|
|
|
|
public interface MisoContext extends Context
|
|
{
|
|
/**
|
|
* Returns a reference to the tile manager. This reference is
|
|
* valid for the lifetime of the application.
|
|
*/
|
|
public TileManager getTileManager ();
|
|
}
|