Opentk/Source/OpenTK/Platform/INativeWindow.cs

18 lines
368 B
C#
Raw Normal View History

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; }
}
}