add window object property

This commit is contained in:
Gered 2013-08-17 17:49:43 -04:00
parent ba5872a1de
commit fe8fe1f766
3 changed files with 7 additions and 0 deletions

View file

@ -69,6 +69,11 @@ namespace Blarg.GameFramework
get { return null; }
}
public override IPlatformWindow Window
{
get { return _windowInfo; }
}
public override GL20 GL
{
get { return _gl; }

View file

@ -20,6 +20,7 @@ namespace Blarg.GameFramework
public abstract IKeyboard Keyboard { get; }
public abstract IMouse Mouse { get; }
public abstract ITouchScreen TouchScreen { get; }
public abstract IPlatformWindow Window { get; }
public abstract GL20 GL { get; }
public int FPS { get; protected set; }

View file

@ -15,6 +15,7 @@ namespace Blarg.GameFramework
IKeyboard Keyboard { get; }
IMouse Mouse { get; }
ITouchScreen TouchScreen { get; }
IPlatformWindow Window { get; }
GL20 GL { get; }
int FPS { get; }