TP-programmation-orientee-o.../TP13/IHM.java

15 lines
257 B
Java
Raw Permalink Normal View History

2023-06-20 19:02:09 +00:00
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();
}
}