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