Exemplo n.º 1
0
 public void SetFree()
 {
     this.elementInside = new FreeBox();
 }
Exemplo n.º 2
0
 public void SetElementInside(int i, int j, IAmbientElement elem)
 {
     map[i, j].elementInside = elem;
 }
Exemplo n.º 3
0
 public AmbientCell(IAmbientElement elem)
 {
     this.elementInside = elem;
 }