From 5dc605342632e87e69c8865340978536da8fe951 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ruwen=20B=C3=BCrger?= <3014515@stud.hs-mannheim.de> Date: Sat, 5 Oct 2024 15:42:08 +0200 Subject: [PATCH] =?UTF-8?q?ParkhausSoftware=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ParkhausSoftware | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ParkhausSoftware diff --git a/ParkhausSoftware b/ParkhausSoftware new file mode 100644 index 0000000..48ec16b --- /dev/null +++ b/ParkhausSoftware @@ -0,0 +1,14 @@ +package pr2parkhaus; + +public class ParkhausSoftware { + + public static void main(String[] args) { + + //Startet das User Interface + ParkhausUI ui = new ParkhausUI(); + + ui.start(); + + } + +}