16 lines
316 B
C#
16 lines
316 B
C#
using NibblePoker.Win32Wrappers;
|
|
|
|
namespace ConsoleApp1;
|
|
|
|
//https://getandplay.github.io/2019/05/08/Find%20the%20window%20you%20wanted%20by%20using%20EnumWindows/
|
|
|
|
class Program {
|
|
public static int Main(string[] args) {
|
|
|
|
|
|
|
|
Console.WriteLine("Hello, World!");
|
|
return 0;
|
|
}
|
|
}
|