mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-01-25 19:32:38 +08:00
9 lines
227 B
C#
9 lines
227 B
C#
namespace Fischless.WindowsInput;
|
|
|
|
public interface IInputSimulator
|
|
{
|
|
public IKeyboardSimulator Keyboard { get; }
|
|
public IMouseSimulator Mouse { get; }
|
|
public IInputDeviceStateAdaptor InputDeviceState { get; }
|
|
}
|