Files
YooAsset/Assets/YooAsset/Editor/AssetBundleBuilder/DefaultEncryptionServices.cs
何冠峰 ed89e73d26 fix #576
资源清单加密和解密
2025-06-20 11:36:29 +08:00

11 lines
238 B
C#

namespace YooAsset.Editor
{
public class EncryptionNone : IEncryptionServices
{
public EncryptResult Encrypt(EncryptFileInfo fileInfo)
{
throw new System.NotImplementedException();
}
}
}