// 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; }