IOpCodeAttribute.cs 153 B

12345678
  1. namespace Ryujinx.Graphics.Shader.Decoders
  2. {
  3. interface IOpCodeAttribute
  4. {
  5. int AttributeOffset { get; }
  6. int Count { get; }
  7. }
  8. }