mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
14 lines
325 B
C#
14 lines
325 B
C#
namespace RGB.NET.Core
|
|
{
|
|
internal class EmptyTexture : ITexture
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public Size Size { get; } = new(0, 0);
|
|
public Color this[in Point point] => Color.Transparent;
|
|
public Color this[in Rectangle rectangle] => Color.Transparent;
|
|
|
|
#endregion
|
|
}
|
|
}
|