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