mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-16 21:09:22 +08:00
20 lines
468 B
C#
20 lines
468 B
C#
using System;
|
|
using WindowsInput;
|
|
|
|
namespace BetterGenshinImpact.Core.Simulator;
|
|
|
|
public class Simulation
|
|
{
|
|
public static PostMessageSimulator PostMessage(IntPtr hWnd)
|
|
{
|
|
return new PostMessageSimulator(hWnd);
|
|
}
|
|
|
|
[Obsolete]
|
|
public static InputSimulator SendInput { get; } = new();
|
|
|
|
public static Fischless.WindowsInput.InputSimulator SendInputEx { get; } = new();
|
|
|
|
public static MouseEventSimulator MouseEvent { get; } = new();
|
|
}
|