mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-25 18:20:15 +00:00
15 lines
303 B
C#
15 lines
303 B
C#
|
|
namespace YooAsset.Editor
|
|
{
|
|
public class ManifestNone : IManifestServices
|
|
{
|
|
public byte[] ProcessManifest(byte[] fileData)
|
|
{
|
|
return fileData;
|
|
}
|
|
public byte[] RestoreManifest(byte[] fileData)
|
|
{
|
|
return fileData;
|
|
}
|
|
}
|
|
} |