add window object property
This commit is contained in:
parent
ba5872a1de
commit
fe8fe1f766
|
@ -69,6 +69,11 @@ namespace Blarg.GameFramework
|
|||
get { return null; }
|
||||
}
|
||||
|
||||
public override IPlatformWindow Window
|
||||
{
|
||||
get { return _windowInfo; }
|
||||
}
|
||||
|
||||
public override GL20 GL
|
||||
{
|
||||
get { return _gl; }
|
||||
|
|
|
@ -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; }
|
||||
|
|
|
@ -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; }
|
||||
|
|
Reference in a new issue