Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.meowers.cide.data.Tile

Uses of Tile in org.meowers.cide.data
 

Fields in org.meowers.cide.data declared as Tile
private  Tile MapCell.tile
           
 

Methods in org.meowers.cide.data that return Tile
 Tile[] TileSet.getTiles()
          Returns an array containing all the tiles in this set.
 Tile MapCell.getTile()
           
 Tile Map.getTileAt(int x, int y)
          Gets the Tile at the specified position.
 

Methods in org.meowers.cide.data with parameters of type Tile
 void TileSet.addTile(Tile tile)
          Adds a Tile to this TileSet.
 void TileSet.removeTile(Tile tile)
          Removes the specified tile from this set.
 void MapCell.setTile(Tile t)
           
 void Map.setTileAt(int x, int y, Tile t)
          Set the Tile at the map cell specified to the specified Tile.