コード例 #1
0
ファイル: GOGGalaxy.cs プロジェクト: tkashkin/GOGWrapper
 public static void open(GOGGame game)
 {
     if (game == null)
     {
         return;
     }
     GOGGalaxy.open(game.ID);
 }
コード例 #2
0
ファイル: GOGGalaxy.cs プロジェクト: tkashkin/GOGWrapper
        private static void launchWinapi(string id)
        {
            GOGGalaxy.open(id);

            IntPtr hwnd = GOGGalaxy.waitForStartup();

            WinAPI.SetForegroundWindow(hwnd);
            WinAPI.Click(hwnd, new System.Drawing.Point(_x, _y));
        }