1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00
2021-02-21 15:49:05 +01:00

13 lines
250 B
C#

namespace RGB.NET.Core
{
public interface ITexture
{
static ITexture Empty => new EmptyTexture();
Size Size { get; }
Color this[in Point point] { get; }
Color this[in Rectangle rectangle] { get; }
}
}