mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
13 lines
250 B
C#
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; }
|
|
}
|
|
}
|