mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 08:35:32 +00:00
6ae06d82bd
Updated Cube.cs to use System.Drawing.Colors. Improved DefRawInputProc in windows API.cs
19 lines
415 B
C#
19 lines
415 B
C#
#region --- License ---
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
* See license.txt for license info
|
|
*/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
public interface IInputDriver : IKeyboardDriver, IMouseDriver, IDisposable
|
|
{
|
|
IList<IInputDevice> InputDevices { get; }
|
|
void ProcessEvents();
|
|
}
|
|
}
|