11 lines
194 B
C#
11 lines
194 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public interface IProgram : IDisposable
|
|
{
|
|
ProgramLinkStatus CheckProgramLink(bool blocking);
|
|
|
|
byte[] GetBinary();
|
|
}
|
|
}
|