namespace Dashboard.Windowing { /// /// Interface that is used to swap the buffers of windows /// public interface ISwapGroup { /// /// The swap interval for this swap group. /// public int SwapInterval { get; set; } /// /// Swap buffers. /// void Swap(); } }