Brought into the newly revamped world of contexts. Moved SwingUtil to

samskivert.  Added config values to specify the tileset manager and
scene manager.  Split miso and editor config into two separate
properties files.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@101 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-07-21 01:51:10 +00:00
parent 6c8c08a033
commit ab7c437a35
9 changed files with 122 additions and 40 deletions
@@ -1,5 +1,5 @@
//
// $Id: MisoContext.java,v 1.1 2001/07/20 23:42:20 shaper Exp $
// $Id: MisoContext.java,v 1.2 2001/07/21 01:51:10 shaper Exp $
package com.threerings.miso.util;
@@ -10,12 +10,14 @@ import com.threerings.miso.scene.SceneManager;
public interface MisoContext extends Context
{
/**
* Return a reference to the TileManager.
* Return a reference to the TileManager. This reference is valid
* for the lifetime of the application.
*/
public TileManager getTileManager ();
/**
* Return a reference to the SceneManager.
* Return a reference to the SceneManager. This reference is
* valid for the lifetime of the application.
*/
public SceneManager getSceneManager ();
}