update asset bundle builder

This commit is contained in:
hevinci
2023-03-03 11:51:48 +08:00
parent 06b033ed36
commit 46c9110b85
4 changed files with 26 additions and 5 deletions

View File

@@ -0,0 +1,11 @@

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