IProgram.cs 134 B

123456789
  1. using System;
  2. namespace Ryujinx.Graphics.GAL
  3. {
  4. public interface IProgram : IDisposable
  5. {
  6. byte[] GetBinary();
  7. }
  8. }