From a1e6e8f154e7dcd52ba7276931f0de96af9042e2 Mon Sep 17 00:00:00 2001 From: NicolasSchkurko <164418807+NicolasSchkurko@users.noreply.github.com> Date: Mon, 9 Dec 2024 22:42:49 -0300 Subject: [PATCH] Delete IdeaparaColisiones --- IdeaparaColisiones | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 IdeaparaColisiones diff --git a/IdeaparaColisiones b/IdeaparaColisiones deleted file mode 100644 index 23fe47a..0000000 --- a/IdeaparaColisiones +++ /dev/null @@ -1,22 +0,0 @@ -object adminVisuales{ -const tablero=[ -[[][][][][][][][][][][][][][][]], -[[][][][][][][][][][][][][][][]], -[[][][][][][][][][][][][][][][]], -[[][][][][][][][][][][][][][][]], -[[][][][][][][][][][][][][][][]], -] -method asignarposicion(objeto){ -const x=objeto.position().x() -const y=objeto.position().y() -tablero.get(0).get(y).get(x).add(objeto) -} -method sacarObjeto(objeto){ -const x=objeto.position().x() -const y=objeto.position().y() -tablero.get(0).get(y).get(x).remove(objeto) -} -} -method objetosEnPosicion(x,y){ -return tablero.get(0).get(y).get(x) -}