summaryrefslogtreecommitdiffstats
path: root/Bachelor/Prog1/Prakt6/prg1p6_2/main.cpp
blob: 79ab352926ab06afd5a2483d2c442b6f9bc1ed0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}