miduo_client/Assets/LuaFramework/Scripts/SetInternetPic/SetInternetPic.cs

12 lines
245 B
C#

using UnityEngine;
using System.Collections;
using UnityEngine.UI;
public class SetInternetPic
{
public static void SetInternetPicture(string str,Image image)
{
AsyncImageDownload.Instance.SetAsyncImage(str, image);
}
}