Example #1
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="hwnd">句柄</param>
 /// <param name="moveType">移动方式</param>
 /// <param name="x">目地坐标X</param>
 /// <param name="y">目地坐标Y</param>
 public AutoMove(int hwnd, int moveType, int x, int y, int mapid, biz.Execute e)
 {
     this.hwnd     = hwnd;
     this.moveType = moveType;
     this.x        = x;
     this.y        = y;
     this.ex       = e;
     this.mapid    = mapid;
 }
Example #2
0
 public Biology(biz.Execute e)
 {
     this.ex         = e;
     checkAttrThread = new Thread(new ThreadStart(runCheck));
     checkAttrThread.Start();
 }
Example #3
0
File: Baby.cs Project: sczhaoyu/mh
 public Baby(biz.Execute e) : base(e)
 {
 }
Example #4
0
 public GamePlayer(biz.Execute e) : base(e)
 {
 }