mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-14 19:40:47 +00:00
11 lines
202 B
C#
11 lines
202 B
C#
|
|
namespace YooAsset.Editor
|
|
{
|
|
public class EncryptionNone : IEncryptionServices
|
|
{
|
|
public EncryptResult Encrypt(EncryptFileInfo fileInfo)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
} |