mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-12 23:15:34 +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; }
|
|
}
|
|
}
|