19 lines
365 B
C#
19 lines
365 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Thousandto.Code.Logic
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 预加载的资源信息
|
|||
|
/// </summary>
|
|||
|
public class PreLoadAssetInfo
|
|||
|
{
|
|||
|
//资源类型
|
|||
|
public int Type{ get; set; }
|
|||
|
//名字
|
|||
|
public string AssetName { get; set; }
|
|||
|
}
|
|||
|
}
|