18 lines
386 B
C#
18 lines
386 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Platform
|
|
{
|
|
interface INativeWindow : IResizable, IDisposable
|
|
{
|
|
void ProcessEvents();
|
|
|
|
event CreateEvent Create;
|
|
|
|
bool IsIdle { get; }
|
|
bool Quit { get; set; }
|
|
bool Fullscreen { get; set; }
|
|
IGLContext Context { get; }
|
|
}
|
|
}
|