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