com.alicizax.unity.tuyoogam.../Runtime/FileSystem/DefaultCacheFileSystem/Elements/RecordFileElement.cs
陈思海 01160cf00c init
2025-01-09 11:31:04 +08:00

19 lines
605 B
C#

namespace YooAsset
{
internal class RecordFileElement
{
public string InfoFilePath { private set; get; }
public string DataFilePath { private set; get; }
public string DataFileCRC { private set; get; }
public long DataFileSize { private set; get; }
public RecordFileElement(string infoFilePath, string dataFilePath, string dataFileCRC, long dataFileSize)
{
InfoFilePath = infoFilePath;
DataFilePath = dataFilePath;
DataFileCRC = dataFileCRC;
DataFileSize = dataFileSize;
}
}
}