Esempio n. 1
0
 //SHOOT
 //Creates a bullet with given direction, speed and maximum distance from the boss
 public void shootThree()
 {
     //Craig Added learning
     bulletPattern.ShootThreeBullets();
     BlockLearn.Data.Add(new NaiveBayesLearning.InformationModel()
     {
         Lable    = "Bullet",
         Features = new List <string>()
         {
             "Initiated", "Attack"
         }
     });
 }