Coverage Summary for Class: TileMapCells (com.mygdx.utils)

Class Class, % Method, % Line, %
TileMapCells 0% (0/1) 0% (0/2) 0% (0/3)


1 package com.mygdx.utils; 2  3 /** 4  * The id of tiles in the tiled map that should be considered an obstacle or not 5  * will need to be changed when the tiled map is changed dramatically 6  */ 7 public final class TileMapCells { 8  public static int OBSTACLE = 61; 9  public static int PASSABLE = 97; 10  //public static float OBSTACLE_COST = 100000f; 11 }