1
0
Fork 0

Bugfix: Fix COlourHSL.

This commit is contained in:
Starbeamrainbowlabs 2017-02-19 11:20:08 +00:00
parent 786f765f05
commit 2e12e55297
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
namespace SBRL.Utilities
{
class ColourHSL
public class ColourHSL
{
/// <summary>
/// A random number generator.Used to generate random colours in RandomSaturated().
@ -139,7 +139,7 @@ namespace SBRL.Utilities
/// </summary>
public static ColourHSL RandomSaturated()
{
ColourHSL result = new ColourHSL() {
return new ColourHSL() {
Hue = random.Next(0, 360),
Lightness = random.Next(45, 55),
Saturation = random.Next(90, 100)