mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 19:15:39 +00:00
Added Visible and Title properties.
This commit is contained in:
parent
f4c6281e34
commit
2fc8f35a94
|
@ -8,6 +8,8 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
using OpenTK.Input;
|
||||
|
||||
namespace OpenTK.Platform
|
||||
{
|
||||
/// <summary>
|
||||
|
@ -26,6 +28,11 @@ namespace OpenTK.Platform
|
|||
//bool IsExiting { get; }
|
||||
IWindowInfo WindowInfo { get; }
|
||||
|
||||
string Title { get; set; }
|
||||
bool Visible { get; set; }
|
||||
|
||||
IInputDriver InputDriver { get; }
|
||||
|
||||
event CreateEvent Create;
|
||||
event DestroyEvent Destroy;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue