diff --git a/__pycache__/agente.cpython-312.pyc b/__pycache__/agente.cpython-312.pyc index f418504..e1a5920 100644 Binary files a/__pycache__/agente.cpython-312.pyc and b/__pycache__/agente.cpython-312.pyc differ diff --git a/game_theory_of_life.py b/game_theory_of_life.py index 0b3b002..5fc39c8 100644 --- a/game_theory_of_life.py +++ b/game_theory_of_life.py @@ -1,4 +1,4 @@ -from agente import Agente +from modules.agente import Agente tamanho_mundo: tuple = (24, 24) @@ -15,5 +15,5 @@ for _ in range(0, tamanho_mundo[0]): m, n = 0, 0 for m in range(0, tamanho_mundo[0]): for n in range(0, tamanho_mundo[1]): - print(f'{mundo[m][n].pontuacao} ', end='') + print(f'{mundo[m][n].pontuacao:2} ', end='') print('') diff --git a/modules/__init__.py b/modules/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/modules/__pycache__/__init__.cpython-312.pyc b/modules/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000..2dac02e Binary files /dev/null and b/modules/__pycache__/__init__.cpython-312.pyc differ diff --git a/modules/__pycache__/agente.cpython-312.pyc b/modules/__pycache__/agente.cpython-312.pyc new file mode 100644 index 0000000..ef0a1de Binary files /dev/null and b/modules/__pycache__/agente.cpython-312.pyc differ diff --git a/agente.py b/modules/agente.py similarity index 100% rename from agente.py rename to modules/agente.py