コード例 #1
0
ファイル: Prediction.cs プロジェクト: yegithub/Aimtec.SDK
 public void AddPredictionImplementation(string name, ISkillshotPrediction pred)
 {
     this.Implementations[name] = pred;
     this.UpdatePredictionImplementations();
 }
コード例 #2
0
ファイル: Prediction.cs プロジェクト: yegithub/Aimtec.SDK
 private void UpdatePredictionImplementations()
 {
     string[] updatedPredList = this.Implementations.Keys.ToArray();
     this.PredictionMenuItem.Items = updatedPredList;
     this.Implementation           = this.Implementations[this.PredictionMenuItem.SelectedItem];
 }
コード例 #3
0
ファイル: Prediction.cs プロジェクト: D-Cire/Aimtec.SDK
 public void ResetImplementation()
 {
     this.Implementation = new PredictionImpl();
 }