Exemplo n.º 1
0
 public override void RemoveModel(IHandModel model)
 {
     if (handModels != null)
     {
         model.FinishHand();
         handModels.Remove(model);
     }
 }
Exemplo n.º 2
0
 public override void RemoveModel(IHandModel model) {
   if (handModels != null) {
     model.FinishHand();
     handModels.Remove(model);
   }
 }
Exemplo n.º 3
0
 /** To be called if the HandRepresentation no longer has a Leap Hand. */
 public override void Finish()
 {
     handModel.FinishHand();
     parent.ModelPool.Add(handModel);
     handModel = null;
 }