mirror of https://github.com/tuyoogame/YooAsset
40 lines
848 B
C#
40 lines
848 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
|
|
namespace YooAsset
|
|
{
|
|
/// <summary>
|
|
/// 内置资源清单目录
|
|
/// </summary>
|
|
[Serializable]
|
|
internal class DefaultBuildinFileCatalog
|
|
{
|
|
[Serializable]
|
|
public class FileWrapper
|
|
{
|
|
public string BundleGUID;
|
|
public string FileName;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 文件版本
|
|
/// </summary>
|
|
public string FileVersion;
|
|
|
|
/// <summary>
|
|
/// 包裹名称
|
|
/// </summary>
|
|
public string PackageName;
|
|
|
|
/// <summary>
|
|
/// 包裹版本
|
|
/// </summary>
|
|
public string PackageVersion;
|
|
|
|
/// <summary>
|
|
/// 文件列表
|
|
/// </summary>
|
|
public List<FileWrapper> Wrappers = new List<FileWrapper>();
|
|
}
|
|
} |