15 lines
257 B
Java
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();
|
|
|
|
}
|
|
|
|
}
|