2025-11-18 09:18:48 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Kill.Base
|
|
|
|
|
{
|
|
|
|
|
[System.Serializable]
|
|
|
|
|
public class AssetBundleInfoList
|
|
|
|
|
{
|
2026-03-30 16:25:00 +08:00
|
|
|
public string version;
|
2025-11-18 09:18:48 +08:00
|
|
|
public List<AssetBundleInfo> assetbundles;
|
|
|
|
|
|
|
|
|
|
public AssetBundleInfoList(List<AssetBundleInfo> list)
|
|
|
|
|
{
|
|
|
|
|
assetbundles = list;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[System.Serializable]
|
|
|
|
|
public class AssetBundleInfo
|
|
|
|
|
{
|
|
|
|
|
public string name;
|
|
|
|
|
public long size;
|
|
|
|
|
public string md5;
|
|
|
|
|
}
|
|
|
|
|
}
|