using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Thousandto.Code.Logic { /// /// 预加载的资源信息 /// public class PreLoadAssetInfo { //资源类型 public int Type{ get; set; } //名字 public string AssetName { get; set; } } }