smrendererv3/SMCode/SM.OGL/Framebuffer/IFramebufferWindow.cs
2021-03-19 20:59:02 +01:00

17 lines
No EOL
424 B
C#

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