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

13 lines
231 B
C#

namespace ServicePoint;
public sealed partial class Bitmap
{
public bool this[nuint x, nuint y]
{
get => Get(x, y);
set => Set(x, y, value);
}
public Span<byte> Data => UnsafeDataRef().AsSpan();
}