From b73c8f8a000187d40045d217e60b5927e9f85179 Mon Sep 17 00:00:00 2001 From: Jdrezen <jeremie.drezen@gmail.com> Date: Tue, 18 May 2021 15:18:54 +0200 Subject: [PATCH] =?UTF-8?q?Suppression=20de=20fonctions=20non=20implant?= =?UTF-8?q?=C3=A9es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyAmakIHM/classes/controleur.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pyAmakIHM/classes/controleur.py b/pyAmakIHM/classes/controleur.py index 7c62993..1ebec57 100644 --- a/pyAmakIHM/classes/controleur.py +++ b/pyAmakIHM/classes/controleur.py @@ -198,20 +198,17 @@ class Controleur: """ def updateAdd(self) -> None: print("Ajout d'un agent") - self.__amas.add_agent('red') - + """ Remove an agent from amas """ def updateRemove(self) -> None: print("Suppresion d'un agent") - self.__amas.remove_agent() """ Reset amas """ def updateReset(self) -> None: - self.__amas.reset() print("Reset de la simulation") """ -- GitLab