Initial work on support for objects whose images span multiple tiles.
Made TileSet an interface. Throw exceptions for unknown tile or tile set requests. General clean-up and documentation. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@427 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// $Id: NoSuchTileException.java,v 1.1 2001/10/11 00:41:26 shaper Exp $
|
||||
|
||||
package com.threerings.media.tile;
|
||||
|
||||
/**
|
||||
* Thrown when an attempt is made to retrieve a non-existent tile from the
|
||||
* tile manager.
|
||||
*/
|
||||
public class NoSuchTileException extends TileException
|
||||
{
|
||||
public NoSuchTileException (int tid)
|
||||
{
|
||||
super("No such tile [tid=" + tid + "]");
|
||||
_tid = tid;
|
||||
}
|
||||
|
||||
public int getTileId ()
|
||||
{
|
||||
return _tid;
|
||||
}
|
||||
|
||||
protected int _tid;
|
||||
}
|
||||
Reference in New Issue
Block a user