3
5
Fork 13
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-03-03 15:02:17 +00:00
Ryujinx/Ryujinx.Graphics.GAL/IWindow.cs

9 lines
178 B
C#

namespace Ryujinx.Graphics.GAL
{
public interface IWindow
{
void Present(ITexture texture, ImageCrop crop);
void SetSize(int width, int height);
}
}