Files
better-genshin-impact/Vision.Recognition/Helper/Simulator/Simulator.cs
2023-09-23 12:54:16 +08:00

16 lines
347 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Vision.Recognition.Helper.Simulator
{
public class Simulator
{
public static PostMessageSimulator PostMessage(IntPtr hWnd)
{
return new PostMessageSimulator(hWnd);
}
}
}