mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-14 20:53:30 +08:00
17 lines
376 B
C#
17 lines
376 B
C#
using Fischless.WindowsInput;
|
|
using System;
|
|
|
|
namespace BetterGenshinImpact.Core.Simulator;
|
|
|
|
public class Simulation
|
|
{
|
|
public static InputSimulator SendInput { get; } = new();
|
|
|
|
public static MouseEventSimulator MouseEvent { get; } = new();
|
|
|
|
public static PostMessageSimulator PostMessage(IntPtr hWnd)
|
|
{
|
|
return new PostMessageSimulator(hWnd);
|
|
}
|
|
}
|