Initial work on adding a selectable tile panel to the right of the

scene display.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@52 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-07-16 18:59:31 +00:00
parent 0a0fce7db3
commit 6806cfb6f7
6 changed files with 140 additions and 47 deletions
@@ -1,13 +1,14 @@
//
// $Id: CompiledTileSetManager.java,v 1.1 2001/07/12 22:38:03 shaper Exp $
// $Id: CompiledTileSetManager.java,v 1.2 2001/07/16 18:59:31 shaper Exp $
package com.threerings.cocktail.miso.tile;
public class CompiledTileSetManager implements TileSetManager
import com.samskivert.util.Config;
public class CompiledTileSetManager extends TileSetManagerImpl
{
public TileSet getTileSet (int tsid)
public CompiledTileSetManager (Config config)
{
// TBD
return null;
super(config);
}
}