12 lines
208 B
C#
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; }
|
|
}
|
|
}
|