6812739418
Added IMouseDriver.cs and WinRawMouse.
11 lines
200 B
C#
11 lines
200 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
public interface IKeyboardDriver
|
|
{
|
|
IList<Keyboard> Keyboard { get; }
|
|
}
|
|
}
|