From 2fc8f35a94d258207e48d46413d5da2a03689d26 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Wed, 26 Sep 2007 11:53:41 +0000 Subject: [PATCH] Added Visible and Title properties. --- Source/OpenTK/Platform/INativeGLWindow.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Source/OpenTK/Platform/INativeGLWindow.cs b/Source/OpenTK/Platform/INativeGLWindow.cs index f4e4f72b..9e8d5cba 100644 --- a/Source/OpenTK/Platform/INativeGLWindow.cs +++ b/Source/OpenTK/Platform/INativeGLWindow.cs @@ -8,6 +8,8 @@ using System; using System.Collections.Generic; using System.Text; +using OpenTK.Input; + namespace OpenTK.Platform { /// @@ -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; }