Files
JJBB/Assets/Project/Script/GUI/Community/ImageSelectReciver.cs
2024-08-23 15:49:34 +08:00

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);
}
}
}