mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
12 lines
262 B
C#
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);
|
|
}
|
|
}
|