ryubing/src/Ryujinx.Graphics.GAL/IImageArray.cs

10 lines
163 B
C#

using System;
namespace Ryujinx.Graphics.GAL
{
public interface IImageArray : IDisposable
{
void SetImages(int index, ITexture[] images);
}
}