Moved TileSetManager-specific methods from TileManager to TSM since
the editor is a special-purpose app and as such can reference the TSM directly and save us from unnecessary TM -> TSM machinations. Reference miso.properties in its new miso-specific location. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@83 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: TileSetManager.java,v 1.5 2001/07/18 22:45:35 shaper Exp $
|
||||
// $Id: TileSetManager.java,v 1.6 2001/07/20 02:23:34 shaper Exp $
|
||||
|
||||
package com.threerings.miso.tile;
|
||||
|
||||
@@ -10,6 +10,16 @@ import java.util.ArrayList;
|
||||
|
||||
public interface TileSetManager
|
||||
{
|
||||
/**
|
||||
* Return the total number of tiles in the specified tileset.
|
||||
*/
|
||||
public int getNumTilesInSet (int tsid);
|
||||
|
||||
/**
|
||||
* Return a list of all tilesets available for use.
|
||||
*/
|
||||
public ArrayList getAllTileSets ();
|
||||
|
||||
/**
|
||||
* Return the tileset object corresponding to the specified tileset id.
|
||||
*/
|
||||
@@ -20,11 +30,6 @@ public interface TileSetManager
|
||||
*/
|
||||
public Image getTileImage (int tsid, int tid);
|
||||
|
||||
/**
|
||||
* Return a list of all tilesets available for use.
|
||||
*/
|
||||
public ArrayList getTileSets ();
|
||||
|
||||
/**
|
||||
* Return the total number of tilesets.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user