Initial commit

This commit is contained in:
dennisarfan 2025-07-30 07:30:00 +07:00
commit ef3b7d68fb
30 changed files with 1568 additions and 0 deletions

8
Infra/Buffers/IBuffer.cs Normal file
View 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; }
}