11 lines
238 B
C#
Raw Normal View History

2025-04-18 19:18:15 +08:00

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