Ejemplo n.º 1
0
 public override bool Place(PlacableObject objectToBePlaced)
 {
     if (this.IsEmpty())
     {
         this.Content = objectToBePlaced;
         return(true);
     }
     else
     {
         return(false);
     }
 }
Ejemplo n.º 2
0
 public override void Remove()
 {
     this.Content = null;
 }
Ejemplo n.º 3
0
 public override bool Place(PlacableObject objectToBePlaced)
 {
     return(false);
 }
Ejemplo n.º 4
0
 public abstract bool Place(PlacableObject objectToBePlaced);