mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-19 02:20:12 +01:00
13 lines
239 B
C#
13 lines
239 B
C#
namespace ServicePoint;
|
|
|
|
public sealed partial class BrightnessGrid
|
|
{
|
|
public byte this[nuint x, nuint y]
|
|
{
|
|
get => Get(x, y);
|
|
set => Set(x, y, value);
|
|
}
|
|
|
|
public Span<byte> Data => UnsafeDataRef().AsSpan();
|
|
}
|