9fc38238a6
object tiles. If no dimensions are specified for an object, it defaults to 1x1 unit tile units. The media package supports specification of tilesets as object tile sets via the "layer" attribute. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@450 542714f4-19e9-0310-aa3c-eee0fc999fb1
23 lines
651 B
Java
23 lines
651 B
Java
//
|
|
// $Id: TileSetParser.java,v 1.6 2001/10/12 16:36:58 shaper Exp $
|
|
|
|
package com.threerings.media.tile;
|
|
|
|
import java.io.IOException;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* The tile set parser interface is intended to be implemented by
|
|
* classes that load tileset descriptions from a file.
|
|
*/
|
|
public interface TileSetParser
|
|
{
|
|
/**
|
|
* Read tileset description data from the specified file and
|
|
* construct {@link TileSet} objects to suit. Return a list of
|
|
* all tile set objects constructed, or a zero-length list if no
|
|
* tileset descriptions were fully parsed.
|
|
*/
|
|
public List loadTileSets (String fname) throws IOException;
|
|
}
|