Files
bluflame/aiwaz/Backup/Aiwaz.Contracts/ISwapChain.cs
2026-04-18 22:31:51 +02:00

12 lines
208 B
C#

namespace Aiwaz.Contracts
{
public interface ISwapChain
{
void Resize(int argWidth, int argHeight);
void Present();
bool Fullscreen { get; set; }
bool VSync { get; set; }
}
}