Jeremy Pritts d700215e95 Improved immutability
* Use static abstract in IEndianReadable
* Make UnityGUID readonly
* Fix AssetRipper.IO.Files.SourceGenerator
2023-03-20 03:15:22 -04:00

8 lines
174 B
C#

namespace AssetRipper.IO.Endian
{
public interface IEndianReadable<TSelf> where TSelf : IEndianReadable<TSelf>
{
static abstract TSelf Read(EndianReader reader);
}
}