public void addTomato(TomatoType type)
 {
     tasks[currTaskIndex].tomatoSequence.Add(type);
 }
Example #2
0
 public TomatoDescriptor(float[] features, TomatoType label)
 {
     this.Features = features;
     this.Label    = label;
 }
 public void addTomato(TomatoType type)
 {
     tasks[currTaskIndex].tomatoSequence.Add(type);
 }
Example #4
0
 public void UpdateTomatoType(TomatoType tType)
 {
     tomatoType = tType;
 }
Example #5
0
 public void EatTomato()
 {
     // tomato died because user chose a new timer type
     tomatoType = TomatoType.Eaten;
 }
Example #6
0
 public void SetTomatoType(TomatoType tType)
 {
     tomatoType = tType;
 }
Example #7
0
 public Tomato(TomatoType tType)
 {
     tomatoType = tType;
     createDate = DateTime.Now;
 }