コード例 #1
0
ファイル: StraightArrow.cs プロジェクト: KingLebron/robocode
 public override void OnBulletMissed(BulletMissedEvent e)
 {
     //    ITargetPredictor predictor = this.BulletStrategies[evnt.Bullet];
     //    PredictorStats local1 = this.Predictors[predictor];
     //    local1.Misses++;
     base.OnBulletMissed(e);
 }
コード例 #2
0
 public void OnBulletMissed(BulletMissedEvent evnt)
 {
 }
コード例 #3
0
ファイル: Robot.cs プロジェクト: EamonnACI/ACI-SpaceRace
 /// <inheritdoc />
 public virtual void OnBulletMissed(BulletMissedEvent evnt)
 {
 }
コード例 #4
0
 public void OnBulletMissed(BulletMissedEvent evnt)
 {
     count(evnt);
 }
コード例 #5
0
 public override void OnBulletMissed(BulletMissedEvent evnt)
 {
     var predictor = this.BulletStrategies[evnt.Bullet];
     this.Predictors[predictor].Misses += 1;
 }
コード例 #6
0
ファイル: RoboMom.cs プロジェクト: mokhan/irobot
 public override void OnBulletMissed(BulletMissedEvent evnt)
 {
     publisher.publish(evnt);
 }