Files
YooAsset/Assets/YooAsset/Editor/AssetBundleBuilder/DefaultEncryptionServices.cs
2026-01-16 10:28:01 +08:00

11 lines
246 B
C#

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