mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 11:26:24 +02:00
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();
|
|
}
|
|
}
|