You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
246 B
C#

2 weeks ago
using TMPro;
using UnityEngine.UI;
public struct TWS_Image_Data
{
public int imageID;
public string imageURL;
}
public struct TWS_ImageData_UI
{
public TMP_Text imageID;
public TMP_Text imageURL;
public Image loadedImage;
}