find-object-bundle-builder/FindObjectBundleBuilder/Assets/YooAsset/Editor/AssetBundleBuilder/DefaultEncryption.cs

11 lines
202 B
C#
Raw Normal View History

2025-04-18 07:35:35 +00:00

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