Initial commit
This commit is contained in:
commit
ef3b7d68fb
30 changed files with 1568 additions and 0 deletions
8
Infra/Buffers/IBuffer.cs
Normal file
8
Infra/Buffers/IBuffer.cs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
namespace StitchATon2.Infra.Buffers;
|
||||
|
||||
public interface IBuffer<T> : IDisposable where T : unmanaged
|
||||
{
|
||||
ref T this[int index] { get; }
|
||||
|
||||
Span<T> Span { get; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue