mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 08:55:38 +00:00
12 lines
191 B
C#
12 lines
191 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
public interface IMouseDriver
|
|
{
|
|
IList<Mouse> Mouse { get; }
|
|
}
|
|
}
|