summaryrefslogtreecommitdiffstats
path: root/Bachelor/Prog1/Prakt6/prg1p6_2/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Bachelor/Prog1/Prakt6/prg1p6_2/main.cpp')
-rw-r--r--Bachelor/Prog1/Prakt6/prg1p6_2/main.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/Bachelor/Prog1/Prakt6/prg1p6_2/main.cpp b/Bachelor/Prog1/Prakt6/prg1p6_2/main.cpp
new file mode 100644
index 0000000..79ab352
--- /dev/null
+++ b/Bachelor/Prog1/Prakt6/prg1p6_2/main.cpp
@@ -0,0 +1,15 @@
+// Programmieren 1, Praktikum 6, Aufgabe 1
+// Author: Sven Eisenhauer
+// Date: 14.01.2005
+// File: main.cpp
+// Description: Application for class TicTacToe
+
+#include "tictactoe.h"
+
+int main()
+{
+ TicTacToe game;
+ game.playOneGame();
+
+ return 0;
+} \ No newline at end of file