mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-13 06:05:37 +00:00
12 lines
194 B
C#
12 lines
194 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace OpenTK.Input
|
|||
|
{
|
|||
|
public interface IMouseDriver
|
|||
|
{
|
|||
|
IList<Keyboard> Mouse { get; }
|
|||
|
}
|
|||
|
}
|