definir interacções de Agentes em modulo 'interaccoes.py'

This commit is contained in:
2024-09-23 12:28:21 +01:00
parent 3288e06bcf
commit 6b71fcea23
2 changed files with 14 additions and 8 deletions

10
modules/interaccoes.py Normal file
View File

@ -0,0 +1,10 @@
from modules.agente import Agente
from modules.mapa import Mapa
def interaccaoEntreAgentes(agente1: Agente, agente2: Agente) -> None:
pass
def correrInteraccoesEntreAgentes(mapa: Mapa | None) -> None:
pass