mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 04:45:29 +00:00
a707ef91a5
Fully implemented keyboard on X11. Renamed some OpenTK keys.
21 lines
506 B
C#
21 lines
506 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Platform
|
|
{
|
|
/// <summary>
|
|
/// This interface supports OpenTK, and is not intended for use by OpenTK programs.
|
|
/// </summary>
|
|
interface INativeGLWindow : IGLControl, IResizable
|
|
{
|
|
void CreateWindow(DisplayMode mode);
|
|
void ProcessEvents();
|
|
void Exit();
|
|
|
|
bool Exists { get; }
|
|
bool Quit { get; }
|
|
IWindowInfo WindowInfo { get; }
|
|
}
|
|
}
|