eliminar codigo desnecessário

This commit is contained in:
2024-09-19 10:54:21 +01:00
parent 44c6eb999b
commit 0e736d663c

View File

@ -27,11 +27,3 @@ for pos_y in range(0, mapa.dimensao[0]):
# Gui.App(mapa)
Gui.main(mapa)
print(mapa)
pos_y = random.randint(0, tamanho_mundo[0]-1)
pos_x = random.randint(0, tamanho_mundo[1]-1)
obj_agente: Agente | None = mapa.posicao((pos_y, pos_x))
if obj_agente is not None:
print(obj_agente)
print(f'{pos_y=} {pos_x=}')