コード例 #1
0
ファイル: WizardBotThread.cs プロジェクト: f0ubar/ETDA-master
 public WizardBotThread(Client Client)
 {
     this.Client = Client;
     Target      = new Targeting(this);
     PathFinder  = new SonarV2(Client);
     WalkingPath = new Pedometer(Client, PathFinder);
 }
コード例 #2
0
ファイル: WizardBotThread.cs プロジェクト: f0ubar/ETDA-master
 public Info(MapObject Value, Client Client, Targeting Targeting, SonarV2 PathFinder)
 {
     this.Value      = Value;
     this.Client     = Client;
     this.Targeting  = Targeting;
     this.PathFinder = PathFinder;
     UpdatePathToTarget();
 }
コード例 #3
0
ファイル: WizardBotThread.cs プロジェクト: f0ubar/ETDA-master
 public Pedometer(Client Client, SonarV2 PathFinder)
 {
     this.Client     = Client;
     this.PathFinder = PathFinder;
 }