05f3a6aa25
SceneRepository. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@117 542714f4-19e9-0310-aa3c-eee0fc999fb1
33 lines
935 B
Java
33 lines
935 B
Java
//
|
|
// $Id: SceneRepositoryImpl.java,v 1.1 2001/07/24 16:10:19 shaper Exp $
|
|
|
|
package com.threerings.miso.scene;
|
|
|
|
import com.samskivert.util.Config;
|
|
import com.threerings.miso.tile.TileManager;
|
|
|
|
public abstract class SceneRepositoryImpl implements SceneRepository
|
|
{
|
|
/**
|
|
* Initialize the SceneRepository with the given config and tile
|
|
* manager objects. The root scene
|
|
* directory is read from the given config object, and the tile
|
|
* manager is used to obtain tiles when constructing scene objects
|
|
* from files.
|
|
*
|
|
* @param config the config object.
|
|
* @param tilemgr the tile manager object.
|
|
*/
|
|
public void init (Config config, TileManager tilemgr)
|
|
{
|
|
_config = config;
|
|
_tilemgr = tilemgr;
|
|
}
|
|
|
|
/** The config object. */
|
|
protected Config _config;
|
|
|
|
/** The tile manager from which the scenes obtain their tiles. */
|
|
protected TileManager _tilemgr;
|
|
}
|