/// <summary> /// Pol.EXEのプロセスリスト /// </summary> /// <returns></returns> public static PolProcess[] ListPolProcess() { Process[] proc = Process.GetProcessesByName("pol"); PolProcess[] pol = new PolProcess[proc.Length]; for (int i = 0; i < proc.Length; i++) { pol[i] = new PolProcess(proc[i]); } return pol; }
public XIWindower(int pid) : base(pid) { this._Pid = pid; Process p = Process.GetProcessById((int) pid); p.Exited += new EventHandler(ProcessExitedEventHandler); this._pol = new PolProcess(p); this.Player = new Player(this); this.Inventory = new Inventory(this); this.Fishing = new Fishing(this); this.Craft = new Craft(this); this.Menu = new Menu(this); }
public Player(int pid) { Process proc = Process.GetProcessById(pid); pol = new PolProcess(proc); Read(); }
public Player(Process proc) { pol = new PolProcess(proc); // PlayerInfoの場所にアドレスをセット Read(); }
public Inventory(int pid) { Process proc = Process.GetProcessById(pid); pol = new PolProcess(proc); }
public Inventory(Process proc) { pol = new PolProcess(proc); }
public Fishing(int pid) { Process proc = Process.GetProcessById(pid); pol = new PolProcess(proc); }
public Fishing(Process proc) { pol = new PolProcess(proc); }