mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-28 01:15:50 +00:00
18 lines
368 B
C#
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; }
|
|
}
|
|
}
|