1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-10 09:51:43 +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);
}
}