File tree 1 file changed +27
-0
lines changed
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 8
8
//
9
9
// ********************************************************************
10
10
11
+ // ReSharper disable CheckNamespace
12
+
11
13
using System ;
12
14
using RimuruDev ;
13
15
using UnityEngine ;
14
16
using Newtonsoft . Json ;
15
17
16
18
namespace AbyssMoth
17
19
{
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>
18
45
[ HelpURL ( "https://github.com/RimuruDev/Unity-ReactivePropertyConverter.git" ) ]
19
46
public sealed class ReactivePropertyConverter : JsonConverter
20
47
{
You can’t perform that action at this time.
0 commit comments