From 4044ba1bcd50f57029c6f5fe40b3ca38a6815865 Mon Sep 17 00:00:00 2001 From: "foulou.salle224-15" Date: Tue, 27 Feb 2024 17:26:26 +0100 Subject: [PATCH] Ajout --- BUT1/DEV2.1/TP5-Heritage/EXO2 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 BUT1/DEV2.1/TP5-Heritage/EXO2 diff --git a/BUT1/DEV2.1/TP5-Heritage/EXO2 b/BUT1/DEV2.1/TP5-Heritage/EXO2 new file mode 100644 index 0000000..90e1d11 --- /dev/null +++ b/BUT1/DEV2.1/TP5-Heritage/EXO2 @@ -0,0 +1,9 @@ +import javax.swing.*; +import java.awt.*; + +public class Gris extends Color { + // Constructeurs + public Gris(int a){ + super(a,a,a); + } +} \ No newline at end of file