mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 17:25:27 +00:00
6812739418
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; }
|
|
}
|
|
}
|