File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,21 +8,21 @@ public class Color
8
8
/// <summary>
9
9
/// The red component of this color in the range [0-1].
10
10
/// </summary>
11
- public int Red { get ; set ; }
11
+ public double Red { get ; set ; }
12
12
13
13
/// <summary>
14
14
/// The green component of this color in the range [0-1].
15
15
/// </summary>
16
- public int Green { get ; set ; }
16
+ public double Green { get ; set ; }
17
17
18
18
/// <summary>
19
19
/// The blue component of this color in the range [0-1].
20
20
/// </summary>
21
- public int Blue { get ; set ; }
21
+ public double Blue { get ; set ; }
22
22
23
23
/// <summary>
24
24
/// The alpha component of this color in the range [0-1].
25
25
/// </summary>
26
- public int Alpha { get ; set ; }
26
+ public double Alpha { get ; set ; }
27
27
}
28
28
}
You can’t perform that action at this time.
0 commit comments