diff --git a/C# Beginners/TTT/App.config b/C# Beginners/TTT/App.config
deleted file mode 100644
index 88fa402..0000000
--- a/C# Beginners/TTT/App.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/C# Beginners/TTT/App.xaml b/C# Beginners/TTT/App.xaml
deleted file mode 100644
index 7d80047..0000000
--- a/C# Beginners/TTT/App.xaml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
diff --git a/C# Beginners/TTT/App.xaml.cs b/C# Beginners/TTT/App.xaml.cs
deleted file mode 100644
index 2d14e85..0000000
--- a/C# Beginners/TTT/App.xaml.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Data;
-using System.Linq;
-using System.Threading.Tasks;
-using System.Windows;
-
-namespace WpfApplication1
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-}
diff --git a/C# Beginners/TTT/MainWindow.xaml b/C# Beginners/TTT/MainWindow.xaml
deleted file mode 100644
index ce18bd5..0000000
--- a/C# Beginners/TTT/MainWindow.xaml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/C# Beginners/TTT/MainWindow.xaml.cs b/C# Beginners/TTT/MainWindow.xaml.cs
deleted file mode 100644
index 018e607..0000000
--- a/C# Beginners/TTT/MainWindow.xaml.cs
+++ /dev/null
@@ -1,150 +0,0 @@
-using System;
-using System.Linq;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Media;
-
-namespace WpfApplication1
-{
- public enum MarkType
- {
- Free,
- Nought,
- Cross
- }
-
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window
- {
- private MarkType[] mResults;
- private bool mPlayer1Turn;
- private bool mWinner;
-
- public MainWindow()
- {
- InitializeComponent();
-
- NewGame();
- }
-
- private void NewGame()
- {
- mResults = new MarkType[9];
-
- for (var i = 0; i < mResults.Length; i++)
- mResults[i] = MarkType.Free;
-
- mPlayer1Turn = true;
-
- Container.Children.Cast