mirror of
https://github.com/babalae/better-genshin-impact
synced 2025-01-09 04:19:47 +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; }
|
|
}
|