blob: 05b16fb477d385a4cc0826dab72611da86cf096c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
*/
/*! \page tictac-example.html
\ingroup examples
\title Tic Tac Toe
This is an implementation of the Tic-tac-toe game.
We didn't put much effort in making a clever algorithm so it's not a
challenge to play against the computer. Instead, study the source code
to see how you can make reusable components such as the \e TicTacGameBoard
widget.
<hr>
Header file:
\include tictac/tictac.h
<hr>
Implementation:
\include tictac/tictac.cpp
<hr>
Main:
\include tictac/main.cpp
*/
|