Files
JJBB/Assets/Project/Script/GUI/Community/ImageSelectReciver.cs

18 lines
312 B
C#
Raw Normal View History

2024-08-23 15:49:34 +08:00
using UnityEngine;
using System.Collections;
public class ImageSelectReciver : MonoBehaviour {
public ImageManagerRoot _ImageSelectTool;
public void GetImagePath(string path)
{
if (_ImageSelectTool != null)
{
_ImageSelectTool.GetImagePath(path);
}
}
}