diff --git a/app/src/main/java/model/GreedyStrategy.java b/app/src/main/java/model/GreedyStrategy.java
new file mode 100644
index 0000000000000000000000000000000000000000..3f79f88f027afd66634bbaf9c7dcddfeae1254c6
--- /dev/null
+++ b/app/src/main/java/model/GreedyStrategy.java
@@ -0,0 +1,14 @@
+package model ;
+import java.util.List;
+import javafx.scene.paint.Color;
+
+import java.util.List;
+
+public class GreedyStrategy implements Strategies {
+
+    @Override
+    public void jouer(List<Color> colors) {
+        throw new UnsupportedOperationException("Not supported yet.");
+    }
+
+}
\ No newline at end of file