LevelTile.HALLWAY -> LevelTile.TUNNEL

This commit is contained in:
Matt Low 2019-12-24 22:39:39 +04:00
parent d8319148b9
commit 124f665232
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ public class LevelLoader {
components[row][j] = LevelTile.GHOST_GATE; components[row][j] = LevelTile.GHOST_GATE;
break; break;
case '-': case '-':
components[row][j] = LevelTile.HALLWAY; components[row][j] = LevelTile.TUNNEL;
break; break;
default: default:
components[row][j] = LevelTile.EMPTY; components[row][j] = LevelTile.EMPTY;

View File

@ -4,7 +4,7 @@ public enum LevelTile {
PELLET, PELLET,
POWER_PELLET, POWER_PELLET,
HALLWAY, TUNNEL,
WALL, WALL,
GHOST_CHAMBER, GHOST_CHAMBER,
GHOST_GATE, GHOST_GATE,