servicepoint/crates/servicepoint_binding_cs/ServicePoint/BrightnessGrid.cs
2024-10-19 14:21:50 +02:00

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();
}