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

10 lines
182 B
C#

using System;
namespace RGB.NET.Core
{
public interface ISampler
{
Color SampleColor(in ReadOnlyMemory<Color> data, int x, int y, int width, int height);
}
}