1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00

Added operators for lazy guyz

This commit is contained in:
Darth Affe 2016-09-10 18:50:56 +02:00
parent aeca5aa060
commit b392ceb6e4

View File

@ -11,7 +11,7 @@ namespace CUE.NET.Brushes
public class SolidColorBrush : AbstractBrush
{
#region Properties & Fields
/// <summary>
/// Gets or sets the color drawn by the brush.
/// </summary>
@ -46,5 +46,19 @@ namespace CUE.NET.Brushes
}
#endregion
#region Operators
public static explicit operator SolidColorBrush(Color color)
{
return new SolidColorBrush(color);
}
public static implicit operator Color(SolidColorBrush brush)
{
return brush.Color;
}
#endregion
}
}