0
0
Fork 0
mirror of https://github.com/GreemDev/Ryujinx.git synced 2024-12-23 05:45:47 +00:00
Ryujinx/src/Ryujinx.Graphics.GAL/IImageArray.cs

10 lines
163 B
C#
Raw Normal View History

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