com.taptap.sdk.cloudsave 4.10.1 → 4.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/Mobile/Editor/NativeDependencies.xml +14 -14
  2. package/Mobile/Editor/NativeDependencies.xml.meta +2 -2
  3. package/Mobile/Editor/TapCloudSaveMobileProcessBuild.cs +20 -20
  4. package/Mobile/Editor/TapCloudSaveMobileProcessBuild.cs.meta +11 -11
  5. package/Mobile/Editor/TapSDK.CloudSave.Mobile.Editor.asmdef +16 -16
  6. package/Mobile/Editor/TapSDK.CloudSave.Mobile.Editor.asmdef.meta +7 -7
  7. package/Mobile/Editor.meta +8 -8
  8. package/Mobile/Runtime/TapCloudSaveBridge.cs +589 -589
  9. package/Mobile/Runtime/TapCloudSaveBridge.cs.meta +11 -11
  10. package/Mobile/Runtime/TapSDK.CloudSave.Mobile.Runtime.asmdef +19 -19
  11. package/Mobile/Runtime/TapSDK.CloudSave.Mobile.Runtime.asmdef.meta +7 -7
  12. package/Mobile/Runtime.meta +8 -8
  13. package/Mobile.meta +8 -8
  14. package/Runtime/Internal/ITapCloudSaveBridge.cs +24 -24
  15. package/Runtime/Internal/ITapCloudSaveBridge.cs.meta +11 -11
  16. package/Runtime/Internal/TapCloudSaveInitTask.cs +19 -19
  17. package/Runtime/Internal/TapCloudSaveInitTask.cs.meta +11 -11
  18. package/Runtime/Internal/TapTapCloudSaveInternal.cs +51 -51
  19. package/Runtime/Internal/TapTapCloudSaveInternal.cs.meta +11 -11
  20. package/Runtime/Internal.meta +8 -8
  21. package/Runtime/Public/ArchiveData.cs +33 -33
  22. package/Runtime/Public/ArchiveData.cs.meta +2 -2
  23. package/Runtime/Public/ITapCloudSaveCallback.cs +8 -8
  24. package/Runtime/Public/ITapCloudSaveCallback.cs.meta +2 -2
  25. package/Runtime/Public/ITapCloudSaveRequestCallback.cs +14 -14
  26. package/Runtime/Public/ITapCloudSaveRequestCallback.cs.meta +2 -2
  27. package/Runtime/Public/TapCloudSaveRequestCallbackAdapter.cs +34 -34
  28. package/Runtime/Public/TapCloudSaveRequestCallbackAdapter.cs.meta +2 -2
  29. package/Runtime/Public/TapTapCloudSave.cs +39 -39
  30. package/Runtime/Public/TapTapCloudSave.cs.meta +11 -11
  31. package/Runtime/Public.meta +8 -8
  32. package/Runtime/TapSDK.CloudSave.Runtime.asmdef +14 -14
  33. package/Runtime/TapSDK.CloudSave.Runtime.asmdef.meta +7 -7
  34. package/Runtime.meta +8 -8
  35. package/Standalone/Editor/TapCloudSaveStandaloneProcessBuild.cs +26 -26
  36. package/Standalone/Editor/TapCloudSaveStandaloneProcessBuild.cs.meta +11 -11
  37. package/Standalone/Editor/TapSDK.CloudSave.Standalone.Editor.asmdef +16 -16
  38. package/Standalone/Editor/TapSDK.CloudSave.Standalone.Editor.asmdef.meta +7 -7
  39. package/Standalone/Editor.meta +8 -8
  40. package/Standalone/Plugins/x86_64/cloudsave_sdk.dll +0 -0
  41. package/Standalone/Plugins/x86_64/cloudsave_sdk.dll.meta +80 -80
  42. package/Standalone/Plugins/x86_64.meta +8 -8
  43. package/Standalone/Plugins.meta +8 -8
  44. package/Standalone/Runtime/Internal/TapCloudSaveArchiveListResponse.cs +11 -11
  45. package/Standalone/Runtime/Internal/TapCloudSaveArchiveListResponse.cs.meta +11 -11
  46. package/Standalone/Runtime/Internal/TapCloudSaveBaseResponse.cs +29 -29
  47. package/Standalone/Runtime/Internal/TapCloudSaveBaseResponse.cs.meta +11 -11
  48. package/Standalone/Runtime/Internal/TapCloudSaveTracker.cs +101 -101
  49. package/Standalone/Runtime/Internal/TapCloudSaveTracker.cs.meta +11 -11
  50. package/Standalone/Runtime/Internal/TapCloudSaveWrapper.cs +583 -561
  51. package/Standalone/Runtime/Internal/TapCloudSaveWrapper.cs.meta +11 -11
  52. package/Standalone/Runtime/Internal.meta +8 -8
  53. package/Standalone/Runtime/TapCloudSaveResultCode.cs +9 -9
  54. package/Standalone/Runtime/TapCloudSaveResultCode.cs.meta +11 -11
  55. package/Standalone/Runtime/TapCloudSaveStandalone.cs +712 -712
  56. package/Standalone/Runtime/TapCloudSaveStandalone.cs.meta +11 -11
  57. package/Standalone/Runtime.meta +8 -8
  58. package/Standalone/TapSDK.CloudSave.Standalone.Runtime.asmdef +21 -21
  59. package/Standalone/TapSDK.CloudSave.Standalone.Runtime.asmdef.meta +7 -7
  60. package/Standalone.meta +8 -8
  61. package/link.xml +3 -3
  62. package/link.xml.meta +7 -7
  63. package/package.json +11 -11
  64. package/package.json.meta +7 -7
@@ -1,40 +1,40 @@
1
- using System;
2
- using System.Collections.Generic;
3
- using System.Threading.Tasks;
4
- using TapSDK.CloudSave.Internal;
5
-
6
- namespace TapSDK.CloudSave
7
- {
8
- public class TapTapCloudSave
9
- {
10
- public static readonly string Version = "4.10.1";
11
-
12
- public static void RegisterCloudSaveCallback(ITapCloudSaveCallback callback)
13
- {
14
- TapTapCloudSaveInternal.RegisterCloudSaveCallback(callback);
15
- }
16
-
17
- public static void UnregisterCloudSaveCallback(ITapCloudSaveCallback callback)
18
- {
19
- TapTapCloudSaveInternal.UnregisterCloudSaveCallback(callback);
20
- }
21
-
22
- public static Task<ArchiveData> CreateArchive(ArchiveMetadata metadata, string archiveFilePath, string archiveCoverPath) =>
23
- TapTapCloudSaveInternal.CreateArchive(metadata, archiveFilePath, archiveCoverPath);
24
-
25
- public static Task<ArchiveData> UpdateArchive(string archiveUuid, ArchiveMetadata metadata, string archiveFilePath, string archiveCoverPath) =>
26
- TapTapCloudSaveInternal.UpdateArchive(archiveUuid, metadata, archiveFilePath, archiveCoverPath);
27
-
28
- public static Task<ArchiveData> DeleteArchive(string archiveUuid) =>
29
- TapTapCloudSaveInternal.DeleteArchive(archiveUuid);
30
-
31
- public static Task<List<ArchiveData>> GetArchiveList() =>
32
- TapTapCloudSaveInternal.GetArchiveList();
33
-
34
- public static Task<byte[]> GetArchiveData(string archiveUuid, string archiveFileId) =>
35
- TapTapCloudSaveInternal.GetArchiveData(archiveUuid, archiveFileId);
36
-
37
- public static Task<byte[]> GetArchiveCover(string archiveUuid, string archiveFileId) =>
38
- TapTapCloudSaveInternal.GetArchiveCover(archiveUuid, archiveFileId);
39
- }
1
+ using System;
2
+ using System.Collections.Generic;
3
+ using System.Threading.Tasks;
4
+ using TapSDK.CloudSave.Internal;
5
+
6
+ namespace TapSDK.CloudSave
7
+ {
8
+ public class TapTapCloudSave
9
+ {
10
+ public static readonly string Version = "4.10.2";
11
+
12
+ public static void RegisterCloudSaveCallback(ITapCloudSaveCallback callback)
13
+ {
14
+ TapTapCloudSaveInternal.RegisterCloudSaveCallback(callback);
15
+ }
16
+
17
+ public static void UnregisterCloudSaveCallback(ITapCloudSaveCallback callback)
18
+ {
19
+ TapTapCloudSaveInternal.UnregisterCloudSaveCallback(callback);
20
+ }
21
+
22
+ public static Task<ArchiveData> CreateArchive(ArchiveMetadata metadata, string archiveFilePath, string archiveCoverPath) =>
23
+ TapTapCloudSaveInternal.CreateArchive(metadata, archiveFilePath, archiveCoverPath);
24
+
25
+ public static Task<ArchiveData> UpdateArchive(string archiveUuid, ArchiveMetadata metadata, string archiveFilePath, string archiveCoverPath) =>
26
+ TapTapCloudSaveInternal.UpdateArchive(archiveUuid, metadata, archiveFilePath, archiveCoverPath);
27
+
28
+ public static Task<ArchiveData> DeleteArchive(string archiveUuid) =>
29
+ TapTapCloudSaveInternal.DeleteArchive(archiveUuid);
30
+
31
+ public static Task<List<ArchiveData>> GetArchiveList() =>
32
+ TapTapCloudSaveInternal.GetArchiveList();
33
+
34
+ public static Task<byte[]> GetArchiveData(string archiveUuid, string archiveFileId) =>
35
+ TapTapCloudSaveInternal.GetArchiveData(archiveUuid, archiveFileId);
36
+
37
+ public static Task<byte[]> GetArchiveCover(string archiveUuid, string archiveFileId) =>
38
+ TapTapCloudSaveInternal.GetArchiveCover(archiveUuid, archiveFileId);
39
+ }
40
40
  }
@@ -1,11 +1,11 @@
1
- fileFormatVersion: 2
2
- guid: 87b60846072124753a92b74ea16f6578
3
- MonoImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- defaultReferences: []
7
- executionOrder: 0
8
- icon: {instanceID: 0}
9
- userData:
10
- assetBundleName:
11
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 87b60846072124753a92b74ea16f6578
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -1,8 +1,8 @@
1
- fileFormatVersion: 2
2
- guid: 988c33dd4ff2943f191c0e7780e73212
3
- folderAsset: yes
4
- DefaultImporter:
5
- externalObjects: {}
6
- userData:
7
- assetBundleName:
8
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 988c33dd4ff2943f191c0e7780e73212
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -1,15 +1,15 @@
1
- {
2
- "name": "TapSDK.CloudSave.Runtime",
3
- "references": [
4
- "GUID:7d5ef2062f3704e1ab74aac0e4d5a1a7"
5
- ],
6
- "includePlatforms": [],
7
- "excludePlatforms": [],
8
- "allowUnsafeCode": false,
9
- "overrideReferences": false,
10
- "precompiledReferences": [],
11
- "autoReferenced": true,
12
- "defineConstraints": [],
13
- "versionDefines": [],
14
- "noEngineReferences": false
1
+ {
2
+ "name": "TapSDK.CloudSave.Runtime",
3
+ "references": [
4
+ "GUID:7d5ef2062f3704e1ab74aac0e4d5a1a7"
5
+ ],
6
+ "includePlatforms": [],
7
+ "excludePlatforms": [],
8
+ "allowUnsafeCode": false,
9
+ "overrideReferences": false,
10
+ "precompiledReferences": [],
11
+ "autoReferenced": true,
12
+ "defineConstraints": [],
13
+ "versionDefines": [],
14
+ "noEngineReferences": false
15
15
  }
@@ -1,7 +1,7 @@
1
- fileFormatVersion: 2
2
- guid: 7c2220358fcd84098b82fbaf24ae7073
3
- AssemblyDefinitionImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 7c2220358fcd84098b82fbaf24ae7073
3
+ AssemblyDefinitionImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
package/Runtime.meta CHANGED
@@ -1,8 +1,8 @@
1
- fileFormatVersion: 2
2
- guid: ce7bca12c04134ae5bf19fe6be232eb7
3
- folderAsset: yes
4
- DefaultImporter:
5
- externalObjects: {}
6
- userData:
7
- assetBundleName:
8
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: ce7bca12c04134ae5bf19fe6be232eb7
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -1,26 +1,26 @@
1
- using System;
2
- using TapSDK.Core.Editor;
3
- using UnityEditor.Build.Reporting;
4
-
5
- namespace TapSDK.CloudSave.Standalone.Editor
6
- {
7
- public class TapCloudSaveStandaloneProcessBuild : SDKLinkProcessBuild
8
- {
9
- public override int callbackOrder => 0;
10
-
11
- public override string LinkPath => "TapSDK/CloudSave/link.xml";
12
-
13
- public override LinkedAssembly[] LinkedAssemblies =>
14
- new LinkedAssembly[]
15
- {
16
- new LinkedAssembly { Fullname = "TapSDK.CloudSave.Runtime" },
17
- new LinkedAssembly { Fullname = "TapSDK.CloudSave.Standalone.Runtime" },
18
- };
19
-
20
- public override Func<BuildReport, bool> IsTargetPlatform =>
21
- (report) =>
22
- {
23
- return BuildTargetUtils.IsSupportStandalone(report.summary.platform);
24
- };
25
- }
26
- }
1
+ using System;
2
+ using TapSDK.Core.Editor;
3
+ using UnityEditor.Build.Reporting;
4
+
5
+ namespace TapSDK.CloudSave.Standalone.Editor
6
+ {
7
+ public class TapCloudSaveStandaloneProcessBuild : SDKLinkProcessBuild
8
+ {
9
+ public override int callbackOrder => 0;
10
+
11
+ public override string LinkPath => "TapSDK/CloudSave/link.xml";
12
+
13
+ public override LinkedAssembly[] LinkedAssemblies =>
14
+ new LinkedAssembly[]
15
+ {
16
+ new LinkedAssembly { Fullname = "TapSDK.CloudSave.Runtime" },
17
+ new LinkedAssembly { Fullname = "TapSDK.CloudSave.Standalone.Runtime" },
18
+ };
19
+
20
+ public override Func<BuildReport, bool> IsTargetPlatform =>
21
+ (report) =>
22
+ {
23
+ return BuildTargetUtils.IsSupportStandalone(report.summary.platform);
24
+ };
25
+ }
26
+ }
@@ -1,11 +1,11 @@
1
- fileFormatVersion: 2
2
- guid: dda36eaa894da49aaaa621fb93b0bd75
3
- MonoImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- defaultReferences: []
7
- executionOrder: 0
8
- icon: {instanceID: 0}
9
- userData:
10
- assetBundleName:
11
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: dda36eaa894da49aaaa621fb93b0bd75
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -1,17 +1,17 @@
1
- {
2
- "name": "TapSDK.CloudSave.Standalone.Editor",
3
- "references": [
4
- "GUID:56f3da7a178484843974054bafe77e73"
5
- ],
6
- "includePlatforms": [
7
- "Editor"
8
- ],
9
- "excludePlatforms": [],
10
- "allowUnsafeCode": false,
11
- "overrideReferences": false,
12
- "precompiledReferences": [],
13
- "autoReferenced": true,
14
- "defineConstraints": [],
15
- "versionDefines": [],
16
- "noEngineReferences": false
1
+ {
2
+ "name": "TapSDK.CloudSave.Standalone.Editor",
3
+ "references": [
4
+ "GUID:56f3da7a178484843974054bafe77e73"
5
+ ],
6
+ "includePlatforms": [
7
+ "Editor"
8
+ ],
9
+ "excludePlatforms": [],
10
+ "allowUnsafeCode": false,
11
+ "overrideReferences": false,
12
+ "precompiledReferences": [],
13
+ "autoReferenced": true,
14
+ "defineConstraints": [],
15
+ "versionDefines": [],
16
+ "noEngineReferences": false
17
17
  }
@@ -1,7 +1,7 @@
1
- fileFormatVersion: 2
2
- guid: c879a497c7c1e1f47a78a9e028d51dee
3
- AssemblyDefinitionImporter:
4
- externalObjects: {}
5
- userData:
6
- assetBundleName:
7
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: c879a497c7c1e1f47a78a9e028d51dee
3
+ AssemblyDefinitionImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -1,8 +1,8 @@
1
- fileFormatVersion: 2
2
- guid: d4653865773654a79a34840d73dfaa1e
3
- folderAsset: yes
4
- DefaultImporter:
5
- externalObjects: {}
6
- userData:
7
- assetBundleName:
8
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: d4653865773654a79a34840d73dfaa1e
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
File without changes
@@ -1,80 +1,80 @@
1
- fileFormatVersion: 2
2
- guid: ab1626c057f474478a7240f424e355cd
3
- PluginImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- iconMap: {}
7
- executionOrder: {}
8
- defineConstraints: []
9
- isPreloaded: 0
10
- isOverridable: 0
11
- isExplicitlyReferenced: 0
12
- validateReferences: 1
13
- platformData:
14
- - first:
15
- : Any
16
- second:
17
- enabled: 0
18
- settings:
19
- Exclude Android: 1
20
- Exclude Editor: 0
21
- Exclude Linux64: 0
22
- Exclude OSXUniversal: 0
23
- Exclude Win: 0
24
- Exclude Win64: 0
25
- Exclude iOS: 1
26
- - first:
27
- Android: Android
28
- second:
29
- enabled: 0
30
- settings:
31
- CPU: ARMv7
32
- - first:
33
- Any:
34
- second:
35
- enabled: 0
36
- settings: {}
37
- - first:
38
- Editor: Editor
39
- second:
40
- enabled: 1
41
- settings:
42
- CPU: x86_64
43
- DefaultValueInitialized: true
44
- OS: AnyOS
45
- - first:
46
- Standalone: Linux64
47
- second:
48
- enabled: 1
49
- settings:
50
- CPU: AnyCPU
51
- - first:
52
- Standalone: OSXUniversal
53
- second:
54
- enabled: 1
55
- settings:
56
- CPU: x86_64
57
- - first:
58
- Standalone: Win
59
- second:
60
- enabled: 1
61
- settings:
62
- CPU: None
63
- - first:
64
- Standalone: Win64
65
- second:
66
- enabled: 1
67
- settings:
68
- CPU: AnyCPU
69
- - first:
70
- iPhone: iOS
71
- second:
72
- enabled: 0
73
- settings:
74
- AddToEmbeddedBinaries: false
75
- CPU: AnyCPU
76
- CompileFlags:
77
- FrameworkDependencies:
78
- userData:
79
- assetBundleName:
80
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: ab1626c057f474478a7240f424e355cd
3
+ PluginImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ iconMap: {}
7
+ executionOrder: {}
8
+ defineConstraints: []
9
+ isPreloaded: 0
10
+ isOverridable: 0
11
+ isExplicitlyReferenced: 0
12
+ validateReferences: 1
13
+ platformData:
14
+ - first:
15
+ : Any
16
+ second:
17
+ enabled: 0
18
+ settings:
19
+ Exclude Android: 1
20
+ Exclude Editor: 0
21
+ Exclude Linux64: 0
22
+ Exclude OSXUniversal: 0
23
+ Exclude Win: 0
24
+ Exclude Win64: 0
25
+ Exclude iOS: 1
26
+ - first:
27
+ Android: Android
28
+ second:
29
+ enabled: 0
30
+ settings:
31
+ CPU: ARMv7
32
+ - first:
33
+ Any:
34
+ second:
35
+ enabled: 0
36
+ settings: {}
37
+ - first:
38
+ Editor: Editor
39
+ second:
40
+ enabled: 1
41
+ settings:
42
+ CPU: x86_64
43
+ DefaultValueInitialized: true
44
+ OS: AnyOS
45
+ - first:
46
+ Standalone: Linux64
47
+ second:
48
+ enabled: 1
49
+ settings:
50
+ CPU: AnyCPU
51
+ - first:
52
+ Standalone: OSXUniversal
53
+ second:
54
+ enabled: 1
55
+ settings:
56
+ CPU: x86_64
57
+ - first:
58
+ Standalone: Win
59
+ second:
60
+ enabled: 1
61
+ settings:
62
+ CPU: None
63
+ - first:
64
+ Standalone: Win64
65
+ second:
66
+ enabled: 1
67
+ settings:
68
+ CPU: AnyCPU
69
+ - first:
70
+ iPhone: iOS
71
+ second:
72
+ enabled: 0
73
+ settings:
74
+ AddToEmbeddedBinaries: false
75
+ CPU: AnyCPU
76
+ CompileFlags:
77
+ FrameworkDependencies:
78
+ userData:
79
+ assetBundleName:
80
+ assetBundleVariant:
@@ -1,8 +1,8 @@
1
- fileFormatVersion: 2
2
- guid: 101c62a95828048cc93ef7e5d6b64cfa
3
- folderAsset: yes
4
- DefaultImporter:
5
- externalObjects: {}
6
- userData:
7
- assetBundleName:
8
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 101c62a95828048cc93ef7e5d6b64cfa
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -1,8 +1,8 @@
1
- fileFormatVersion: 2
2
- guid: 5357854b8ecbf4851944540c28915031
3
- folderAsset: yes
4
- DefaultImporter:
5
- externalObjects: {}
6
- userData:
7
- assetBundleName:
8
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 5357854b8ecbf4851944540c28915031
3
+ folderAsset: yes
4
+ DefaultImporter:
5
+ externalObjects: {}
6
+ userData:
7
+ assetBundleName:
8
+ assetBundleVariant:
@@ -1,11 +1,11 @@
1
- using System.Collections.Generic;
2
- using Newtonsoft.Json;
3
-
4
- namespace TapSDK.CloudSave.Standalone
5
- {
6
- internal class TapCloudSaveArchiveListResponse
7
- {
8
- [JsonProperty("saves")]
9
- public List<ArchiveData> saves { get; set; }
10
- }
11
- }
1
+ using System.Collections.Generic;
2
+ using Newtonsoft.Json;
3
+
4
+ namespace TapSDK.CloudSave.Standalone
5
+ {
6
+ internal class TapCloudSaveArchiveListResponse
7
+ {
8
+ [JsonProperty("saves")]
9
+ public List<ArchiveData> saves { get; set; }
10
+ }
11
+ }
@@ -1,11 +1,11 @@
1
- fileFormatVersion: 2
2
- guid: 61206a5a265ae4a93b3e867f7f6314ec
3
- MonoImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- defaultReferences: []
7
- executionOrder: 0
8
- icon: {instanceID: 0}
9
- userData:
10
- assetBundleName:
11
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: 61206a5a265ae4a93b3e867f7f6314ec
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant:
@@ -1,29 +1,29 @@
1
- using Newtonsoft.Json;
2
- using Newtonsoft.Json.Linq;
3
-
4
- namespace TapSDK.CloudSave.Standalone
5
- {
6
- internal class TapCloudSaveBaseResponse
7
- {
8
- [JsonProperty("success")]
9
- public bool success { get; set; }
10
-
11
- [JsonProperty("now")]
12
- public int now { get; set; }
13
-
14
- [JsonProperty("data")]
15
- public JObject data { get; set; }
16
- }
17
-
18
- internal class TapCloudSaveError
19
- {
20
- [JsonProperty("code")]
21
- public int code { get; set; }
22
-
23
- [JsonProperty("msg")]
24
- public string msg { get; set; }
25
-
26
- [JsonProperty("error")]
27
- public string error { get; set; }
28
- }
29
- }
1
+ using Newtonsoft.Json;
2
+ using Newtonsoft.Json.Linq;
3
+
4
+ namespace TapSDK.CloudSave.Standalone
5
+ {
6
+ internal class TapCloudSaveBaseResponse
7
+ {
8
+ [JsonProperty("success")]
9
+ public bool success { get; set; }
10
+
11
+ [JsonProperty("now")]
12
+ public int now { get; set; }
13
+
14
+ [JsonProperty("data")]
15
+ public JObject data { get; set; }
16
+ }
17
+
18
+ internal class TapCloudSaveError
19
+ {
20
+ [JsonProperty("code")]
21
+ public int code { get; set; }
22
+
23
+ [JsonProperty("msg")]
24
+ public string msg { get; set; }
25
+
26
+ [JsonProperty("error")]
27
+ public string error { get; set; }
28
+ }
29
+ }
@@ -1,11 +1,11 @@
1
- fileFormatVersion: 2
2
- guid: bfcbbaef939584a02a911c0aeeb2bae5
3
- MonoImporter:
4
- externalObjects: {}
5
- serializedVersion: 2
6
- defaultReferences: []
7
- executionOrder: 0
8
- icon: {instanceID: 0}
9
- userData:
10
- assetBundleName:
11
- assetBundleVariant:
1
+ fileFormatVersion: 2
2
+ guid: bfcbbaef939584a02a911c0aeeb2bae5
3
+ MonoImporter:
4
+ externalObjects: {}
5
+ serializedVersion: 2
6
+ defaultReferences: []
7
+ executionOrder: 0
8
+ icon: {instanceID: 0}
9
+ userData:
10
+ assetBundleName:
11
+ assetBundleVariant: