18 lines
312 B
C#
18 lines
312 B
C#
|
using UnityEngine;
|
|||
|
using System.Collections;
|
|||
|
|
|||
|
public class ImageSelectReciver : MonoBehaviour {
|
|||
|
|
|||
|
public ImageManagerRoot _ImageSelectTool;
|
|||
|
|
|||
|
public void GetImagePath(string path)
|
|||
|
{
|
|||
|
if (_ImageSelectTool != null)
|
|||
|
{
|
|||
|
_ImageSelectTool.GetImagePath(path);
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|