18 lines
411 B
C#
18 lines
411 B
C#
|
namespace Dashboard.Windowing
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Interface that is used to swap the buffers of windows
|
||
|
/// </summary>
|
||
|
public interface ISwapGroup
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The swap interval for this swap group.
|
||
|
/// </summary>
|
||
|
public int SwapInterval { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Swap buffers.
|
||
|
/// </summary>
|
||
|
void Swap();
|
||
|
}
|
||
|
}
|