From 31165425eefe953323e4eb9564610c6d608195c2 Mon Sep 17 00:00:00 2001
From: Bamba TOP <bamba.top@etu.u-pec.fr>
Date: Tue, 22 Oct 2024 01:33:13 +0200
Subject: [PATCH] =?UTF-8?q?T=C3=A9l=C3=A9verser=20les=20fichiers=20vers=20?=
 =?UTF-8?q?"ancien/src/controllers"?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 ancien/src/controllers/NewListener.java | 11 +++++++++++
 ancien/src/controllers/ResListener.java | 11 +++++++++++
 2 files changed, 22 insertions(+)
 create mode 100644 ancien/src/controllers/NewListener.java
 create mode 100644 ancien/src/controllers/ResListener.java

diff --git a/ancien/src/controllers/NewListener.java b/ancien/src/controllers/NewListener.java
new file mode 100644
index 0000000..7acacfc
--- /dev/null
+++ b/ancien/src/controllers/NewListener.java
@@ -0,0 +1,11 @@
+package controllers;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+
+public class NewListener implements ActionListener {
+    @Override
+    public void actionPerformed(ActionEvent e) {
+        System.out.println("Juste pour tester - New Game");
+        
+    }
+}
\ No newline at end of file
diff --git a/ancien/src/controllers/ResListener.java b/ancien/src/controllers/ResListener.java
new file mode 100644
index 0000000..6779500
--- /dev/null
+++ b/ancien/src/controllers/ResListener.java
@@ -0,0 +1,11 @@
+package controllers;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+
+public class ResListener implements ActionListener {
+    @Override
+    public void actionPerformed(ActionEvent e) {
+        System.out.println("Juste pour tester ");
+        
+    }
+}
\ No newline at end of file