private void SelectTile(ClickableTile tile) { if (tile == null) { return; } if (tile.isEmpty()) { tile.movable = true; tile.GetComponent <Image>().color = Color.cyan; } }