YooAsset/Editor/AssetBundleBuilder/DefaultEncryption.cs

11 lines
238 B
C#
Raw Normal View History

2026-01-21 15:46:51 +08:00

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