Example #1
0
	public override void RaiseEventTileSwitchAnimEnded (AbstractTile neighbourTile) {
		base.RaiseEventTileSwitchAnimEnded (neighbourTile);
		
		if (neighbourTile is BombTile) {
			// Destroy and trigger neighbor tile.
			neighbourTile.Destroy();
		}
	}