mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 17:05:37 +00:00
20630278fb
Added all Raw Input structs, functions and enums in Windows.API. WinRawKeyboard implements IKeyboard using Raw Input on Windows.
20 lines
431 B
C#
20 lines
431 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; }
|
|
OpenTK.Input.IKeyboard Key { get; }
|
|
IGLContext Context { get; }
|
|
}
|
|
}
|