Added character manager and character descriptions. Allow tile sets

that have no specified layer.  Made the scene editor gracefully handle
the case where there are no valid tile sets for use with the selected
scene layer.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@461 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-10-15 23:53:43 +00:00
parent 3773da79a6
commit 00d57dfb92
15 changed files with 276 additions and 351 deletions
@@ -1,16 +1,17 @@
//
// $Id: MisoContext.java,v 1.4 2001/08/16 23:14:21 mdb Exp $
// $Id: MisoContext.java,v 1.5 2001/10/15 23:53:43 shaper Exp $
package com.threerings.miso.util;
import com.samskivert.util.Context;
import com.threerings.media.tile.TileManager;
public interface MisoContext extends Context
{
/**
* Return a reference to the TileManager. This reference is valid
* for the lifetime of the application.
* Returns a reference to the tile manager. This reference is
* valid for the lifetime of the application.
*/
public TileManager getTileManager ();
}