mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-25 19:04:43 +00:00
23 lines
510 B
C#
23 lines
510 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace HotMain.SHGame.YooAsset.StreamingAssetsHelper
|
|
{
|
|
/// <summary>
|
|
/// 内置资源清单
|
|
/// </summary>
|
|
public class BuildinFileManifest : ScriptableObject
|
|
{
|
|
[Serializable]
|
|
public class Element
|
|
{
|
|
public string PackageName;
|
|
public string FileName;
|
|
public string FileCRC32;
|
|
}
|
|
|
|
public List<Element> BuildinFiles = new List<Element>();
|
|
}
|
|
}
|