From 4e973f4a1fbfd1dcf1857fa7748a94d8a8643b60 Mon Sep 17 00:00:00 2001 From: r20004714 <andrianinarisaina-cy.RAKOTOARISOA@etu.univ-amu.fr> Date: Fri, 18 Nov 2022 22:01:46 +0100 Subject: [PATCH] =?UTF-8?q?T=C3=A2che=209.2(12.2.2)=20:=20Cr=C3=A9ation=20?= =?UTF-8?q?de=20la=20classe=20RandomWalk=20permettant,=20=C3=A0=20chaque?= =?UTF-8?q?=20pas,=20de=20choisir=20al=C3=A9atoirement=20une=20cellule=20v?= =?UTF-8?q?oisine=20de=20la=20cellule=20courante.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/java/model/RandomWalk.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 app/src/main/java/model/RandomWalk.java diff --git a/app/src/main/java/model/RandomWalk.java b/app/src/main/java/model/RandomWalk.java new file mode 100644 index 0000000..23db6f6 --- /dev/null +++ b/app/src/main/java/model/RandomWalk.java @@ -0,0 +1,12 @@ +package model; +import java.util.List; +import javafx.scene.paint.Color; + +public class RandomWalk implements Strategies { + + @Override + public void jouer(List<Color> colors) { + throw new UnsupportedOperationException("Not supported yet."); + } + +} \ No newline at end of file -- GitLab