コード例 #1
0
ファイル: SafeTimer.cs プロジェクト: catontheway/AxTools
 internal SafeTimer(int interval, GameInterface game, Action action)
 {
     this.interval = interval;
     this.action   = action;
     this.info     = game;
 }
コード例 #2
0
ファイル: Utilities.cs プロジェクト: catontheway/AxTools
 public static IntPtr WoWWindowHandle(GameInterface info)
 {
     return(info.wowProcess.MainWindowHandle);
 }