Some auto-formatting and ROS iteration for lookups.

This commit is contained in:
Ottermandias 2023-09-03 13:13:35 +02:00
parent cca626449d
commit 2a2fa3bf1d
4 changed files with 71 additions and 67 deletions

View file

@ -1,3 +1,4 @@
using System;
using System.Runtime.InteropServices;
using FFXIVClientStructs.FFXIV.Client.Graphics.Render;
@ -41,4 +42,7 @@ public unsafe struct Material
[FieldOffset( 0x10 )]
public uint SamplerFlags;
}
public ReadOnlySpan<TextureEntry> TextureSpan
=> new(Textures, TextureCount);
}