mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-28 20:45:44 +00:00
d423f6e94c
Added IMouseDriver.cs and WinRawMouse.
12 lines
200 B
C#
12 lines
200 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
public interface IKeyboardDriver
|
|
{
|
|
IList<Keyboard> Keyboard { get; }
|
|
}
|
|
}
|