mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +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;
|
|
}
|
|
}
|
|
} |