namespace SM.OGL.Framebuffer { /// /// A interface, so the framebuffer system can react to changes of windows. /// public interface IFramebufferWindow { /// /// The width of the window. /// int Width { get; } /// /// The height of the window. /// int Height { get; } } }