Files
game_theory_of_life/game_theory_of_life.py

11 lines
177 B
Python

from modules.agente import Agente
import modules.gui as Gui
from modules.mapa import Mapa
tamanho_mundo: tuple = (30, 30)
mapa = Mapa(tamanho_mundo)
mapa.mostrar()
Gui.App()