mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
10 lines
210 B
C#
10 lines
210 B
C#
namespace RGB.NET.Core
|
|
{
|
|
public delegate Color GetColor(int x, int y);
|
|
|
|
public interface ISampler
|
|
{
|
|
Color SampleColor(int x, int y, int width, int height, GetColor getColorFunc);
|
|
}
|
|
}
|