diff --git a/PenPaperMain/KampangenDetails.xaml b/PenPaperMain/KampangenDetails.xaml
new file mode 100644
index 0000000..bae665d
--- /dev/null
+++ b/PenPaperMain/KampangenDetails.xaml
@@ -0,0 +1,80 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PenPaperMain/KampangenDetails.xaml.cs b/PenPaperMain/KampangenDetails.xaml.cs
new file mode 100644
index 0000000..d566d5c
--- /dev/null
+++ b/PenPaperMain/KampangenDetails.xaml.cs
@@ -0,0 +1,27 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Shapes;
+
+namespace Pen_Paper_Main
+{
+ ///
+ /// Interaktionslogik für KampangenDetails.xaml
+ ///
+ public partial class KampangenDetails : Window
+ {
+ public KampangenDetails()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/PenPaperMain/Lobby.xaml b/PenPaperMain/Lobby.xaml
new file mode 100644
index 0000000..0600f87
--- /dev/null
+++ b/PenPaperMain/Lobby.xaml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/PenPaperMain/Lobby.xaml.cs b/PenPaperMain/Lobby.xaml.cs
new file mode 100644
index 0000000..c4155f4
--- /dev/null
+++ b/PenPaperMain/Lobby.xaml.cs
@@ -0,0 +1,34 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Shapes;
+
+namespace Pen_Paper_Main
+{
+ ///
+ /// Interaktionslogik für Lobby.xaml
+ ///
+ public partial class Lobby : Window
+ {
+ public Lobby()
+ {
+ InitializeComponent();
+ }
+
+
+ private void Charaktere_Click(object sender, RoutedEventArgs e)
+ {
+ var win = new CharakterListe();
+ win.ShowDialog();
+ }
+ }
+}
diff --git a/PenPaperMain/MainWindow.xaml b/PenPaperMain/MainWindow.xaml
new file mode 100644
index 0000000..d5f2991
--- /dev/null
+++ b/PenPaperMain/MainWindow.xaml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file