mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 03:15:40 +00:00
2f64fb372e
Updated the ExampleLauncher to not process exceptions. Updated the IExample interface to contain the Launch method. Updated examples and the ExampleLauncher according to the IExample interface. Synced with gl3 branch.
14 lines
336 B
C#
14 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
public interface IInputDriver
|
|
{
|
|
IList<IInputDevice> InputDevices { get; }
|
|
IList<IKeyboard> Keyboards { get; }
|
|
//IEnumerable<IMouse> Mice { get; }
|
|
//IEnumerable<IHid> Hids { get; }
|
|
}
|
|
} |