2025-06-11 02:49:11 -07:00

12 lines
262 B
C#

using AssetRipper.SourceGenerated.Enums;
namespace AssetRipper.SourceGenerated.Extensions;
public static class IndexFormatExtensions
{
extension(IndexFormat format)
{
public int Size => format is IndexFormat.UInt16 ? sizeof(ushort) : sizeof(uint);
}
}