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:
@@ -1,9 +1,27 @@
|
||||
//
|
||||
// $Id: TileSetManager.java,v 1.1 2001/07/12 22:38:03 shaper Exp $
|
||||
// $Id: TileSetManager.java,v 1.2 2001/07/16 18:59:31 shaper Exp $
|
||||
|
||||
package com.threerings.cocktail.miso.tile;
|
||||
|
||||
public interface TileSetManager
|
||||
{
|
||||
/**
|
||||
* Return the tileset object corresponding to the specified tileset id.
|
||||
*/
|
||||
public TileSet getTileSet (int tsid);
|
||||
|
||||
/**
|
||||
* Return a String array of all tileset names.
|
||||
*/
|
||||
public String[] getTileSetNames ();
|
||||
|
||||
/**
|
||||
* Return the tileset id associated with the named tileset.
|
||||
*/
|
||||
public int getTileSetId (String name);
|
||||
|
||||
/**
|
||||
* Return the total number of tilesets.
|
||||
*/
|
||||
public int getNumTileSets ();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user