ITapCloudSaveCallback.cs 159 B

123456789
  1. using System.Collections.Generic;
  2. namespace TapSDK.CloudSave
  3. {
  4. public interface ITapCloudSaveCallback
  5. {
  6. void OnResult(int resultCode);
  7. }
  8. }