Added passability to tile objects. Changed TileSetManager to retrieve

tiles in their entirety from their TileSet.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@231 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Walter Korman
2001-08-13 19:54:39 +00:00
parent d54d562992
commit 18e6b0b95b
7 changed files with 124 additions and 67 deletions
+6 -2
View File
@@ -1,5 +1,5 @@
//
// $Id: Tile.java,v 1.8 2001/07/28 01:31:51 shaper Exp $
// $Id: Tile.java,v 1.9 2001/08/13 19:54:39 shaper Exp $
package com.threerings.miso.tile;
@@ -25,9 +25,13 @@ public class Tile
/** The tile height in pixels. */
public short height;
/** Whether the tile is passable. */
public boolean passable;
/**
* Construct a new tile with the specified identifiers. Intended
* only for use by the TileManager. Do not use this method.
* only for use by the <code>TileManager</code>. Do not call this
* method.
*
* @see TileManager#getTile
*/