DefaultEncryption.cs 202 B

1234567891011
  1. 
  2. namespace YooAsset.Editor
  3. {
  4. public class EncryptionNone : IEncryptionServices
  5. {
  6. public EncryptResult Encrypt(EncryptFileInfo fileInfo)
  7. {
  8. throw new System.NotImplementedException();
  9. }
  10. }
  11. }