Opentk/Source/OpenTK/Platform/INativeWindow.cs
2007-08-05 00:09:42 +00:00

18 lines
368 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Platform
{
interface INativeWindow : IGLControl, IResizable
{
void CreateWindow(DisplayMode mode);
void ProcessEvents();
void Exit();
bool Created { get; }
bool Quit { get; }
IntPtr Handle { get; }
}
}