criação esqueleto para interface GUI
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
from modules.agente import Agente
|
||||
import modules.gui as Gui
|
||||
|
||||
tamanho_mundo: tuple = (24, 24)
|
||||
|
||||
@ -17,3 +18,5 @@ for m in range(0, tamanho_mundo[0]):
|
||||
for n in range(0, tamanho_mundo[1]):
|
||||
print(f'{mundo[m][n].pontuacao:2} ', end='')
|
||||
print('')
|
||||
|
||||
Gui.App()
|
||||
|
||||
Reference in New Issue
Block a user