17 lines
362 B
Java
17 lines
362 B
Java
package app;
|
|
|
|
import fassade.ChatService;
|
|
import ui.Chat;
|
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
|
ChatService service = new ChatService();
|
|
|
|
// Zwei Fenster erstellen
|
|
Chat omarChat = new Chat("Omar", "Obai", service, 550, 100);
|
|
Chat obaiChat = new Chat("Obai", "Omar", service, 100, 100);
|
|
}
|
|
|
|
}
|