Uses of Class
se.liu.student.kimgr905.tilegame.TileMap

Packages that use TileMap
se.liu.student.kimgr905.tilegame   
 

Uses of TileMap in se.liu.student.kimgr905.tilegame
 

Fields in se.liu.student.kimgr905.tilegame declared as TileMap
private  TileMap GameManager.map
           
 

Methods in se.liu.student.kimgr905.tilegame that return TileMap
private  TileMap TileGameResourceManager.loadMap(java.lang.String filename, int screenHeight)
          Loads a TileMap based on the filename given.
 TileMap TileGameResourceManager.loadNextMap(int screenHeight)
          Load the next map.
 TileMap TileGameResourceManager.reloadMap(int screenHeight)
          Reloads the current map.
 

Methods in se.liu.student.kimgr905.tilegame with parameters of type TileMap
 void TileGameResourceManager.addBossShot(TileMap map, Ship ship)
          Adds bosshots to the TileMap.
 void TileGameResourceManager.addPlayerShot(TileMap map, Player player)
          Adds playershots to the TileMap.
private static void TileGameResourceManager.addSprite(TileMap map, Sprite hostSprite, int tileX, int tileY)
          Adds and centers a sprite on the TileMap.
 void TileMapRenderer.draw(java.awt.Graphics2D g, TileMap map, int screenWidth, int screenHeight)
          Draws the specified TileMap.