using UnityEngine; using System.Collections; public class ImageSelectReciver : MonoBehaviour { public ImageManagerRoot _ImageSelectTool; public void GetImagePath(string path) { if (_ImageSelectTool != null) { _ImageSelectTool.GetImagePath(path); } } }