IndexType.cs 116 B

123456789
  1. namespace Ryujinx.Graphics.GAL
  2. {
  3. public enum IndexType
  4. {
  5. UByte,
  6. UShort,
  7. UInt
  8. }
  9. }