示例#1
0
 public Ai(Robot robot)
 {
     this.Player  = robot;
     this.Samples = new SampleBag();
     this.Mode    = Mode.SamplePickup;
     this.CostOfCarriedSamples = new MoleculeBag();
 }
示例#2
0
 public Robot(string target, int eta, int score, int[] storageNumbers)
 {
     this.SetTarget(target);
     this.Eta     = eta;
     this.Score   = score;
     this.Storage = new MoleculeBag();
     this.Storage.UpdateMoleculeValues(storageNumbers);
 }
示例#3
0
 public void SetupMoleculeBag()
 {
     this._moleculeBag = new MoleculeBag();
 }