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

Class Class, % Method, % Line, %
TileMapCells 100% (1/1) 100% (2/2) 100% (4/4)


1 package com.mygdx.utils; 2  3 /** 4  * The id of tiles in the tiled map that should be considered an obstetrical 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 }