namespace XGame.Framework.Asset { /// /// 资源被引用信息 /// [System.Serializable] public struct AssetReferenceInfo { public string assetName; public string[] references; public int ReferencesCount => references?.Length ?? 0; } }