This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
Blarg.GameFramework/Blarg.GameFramework.SDL2/SDLWindow.cs
2013-08-17 18:10:36 -04:00

13 lines
248 B
C#

using System;
namespace Blarg.GameFramework
{
public class SDLWindow : IPlatformWindow
{
public Rect ClientRectangle { get; internal set; }
public int ClientWidth { get; internal set; }
public int ClientHeight { get; internal set; }
}
}