TP-programmation-orientee-o.../TP13/IHM.java
2023-06-20 21:02:09 +02:00

15 lines
257 B
Java

import javax.swing.*;
public class IHM extends JFrame {
public IHM() {
Chat chat = new Chat();
VueChat vue = new VueChat(chat);
ControleurChat controleur;
JFrame fenetre = this.getContentPane();
}
}