You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

15 lines
248 B

  1. using System;
  2. public interface ICloudStorage
  3. {
  4. bool Authenticated { get; }
  5. void Authenticate(Action<bool> onCompleted);
  6. void Deauthenticate();
  7. void LoadFromCloud(Action<byte[]> onCompleted);
  8. void SaveToCloud(byte[] data);
  9. }