File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 88//
99// ********************************************************************
1010
11+ // ReSharper disable CheckNamespace
12+
1113using System ;
1214using RimuruDev ;
1315using UnityEngine ;
1416using Newtonsoft . Json ;
1517
1618namespace AbyssMoth
1719{
20+ /// <summary>
21+ /// Dependency:
22+ /// <code>
23+ ///{
24+ /// "dependencies": {
25+ /// "com.unity.nuget.newtonsoft-json": "3.2.1",
26+ /// }
27+ ///}
28+ /// </code>
29+ /// <example>
30+ /// <code>
31+ /// [Serializable]
32+ /// public class HalloweenUserProgress
33+ /// {
34+ /// [JsonProperty("Currency")]
35+ /// [JsonConverter(typeof(ReactivePropertyConverter))]
36+ /// public ReactiveProperty-int> Currency = new();
37+ ///
38+ /// [JsonProperty("LevelProgress")]
39+ /// [JsonConverter(typeof(ReactivePropertyConverter))]
40+ /// public ReactiveProperty-List-LevelProgress>> LevelProgress = new();
41+ /// }
42+ /// </code>
43+ /// </example>
44+ /// </summary>
1845 [ HelpURL ( "https://github.com/RimuruDev/Unity-ReactivePropertyConverter.git" ) ]
1946 public sealed class ReactivePropertyConverter : JsonConverter
2047 {
You can’t perform that action at this time.
0 commit comments