Esempio n. 1
0
 void pridejOcas(int x, int y)
 {
     if (tail == null)
     {
         tail = new ocas(this.mapa, this, x, y);
     }
     else
     {
         tail.pridejOcas();
     }
 }
Esempio n. 2
0
 public void pridejOcas()
 {
     if (tail == null)
     {
         tail = new ocas(this.mapa, this, zX, zY);
     }
     else
     {
         tail.pridejOcas();
     }
 }