mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-29 10:09:49 +08:00
16 lines
347 B
C#
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);
|
|
}
|
|
}
|
|
} |