Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. void Juego::eliminarTablero(){
  2.    
  3.     Casillero** removido = this->tablero;
  4.     for (int i=0; i<filas; i++) {
  5.         delete []removido[i];
  6.     }
  7.  
  8.     delete []removido;
  9.  
  10.  
  11.    
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement