summaryrefslogtreecommitdiffstats
path: root/rules/uttt.in
diff options
context:
space:
mode:
authorLuotao Fu <l.fu@pengutronix.de>2008-06-06 10:08:08 +0000
committerLuotao Fu <l.fu@pengutronix.de>2008-06-06 10:08:08 +0000
commitd30e9b9a947ff6f3250eb87a3533abd5c7cf4ef7 (patch)
treea2f5fbef2cf48177fb41a9cdef8a14d15237553d /rules/uttt.in
parentde6f384d1e9af90131ca5551f72be9ec07e95d9f (diff)
downloadptxdist-d30e9b9a947ff6f3250eb87a3533abd5c7cf4ef7.tar.gz
ptxdist-d30e9b9a947ff6f3250eb87a3533abd5c7cf4ef7.tar.xz
added ultra tic tac toe
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8453 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/uttt.in')
-rw-r--r--rules/uttt.in28
1 files changed, 28 insertions, 0 deletions
diff --git a/rules/uttt.in b/rules/uttt.in
new file mode 100644
index 000000000..22af8872c
--- /dev/null
+++ b/rules/uttt.in
@@ -0,0 +1,28 @@
+config UTTT
+ tristate
+ prompt "Ultra Tic Tac Toe"
+ help
+ Ultra Tic Tac Toe (UTTT) is a console game board package containing
+ tic tac toe (naughts and crosses) and connect 4 games.
+if UTTT
+
+config UTTT_TTT
+ bool
+ prompt "Install Tic Tac Toe"
+ help
+ Tic tac toe can be played on any size square board from 3x3 up to 7x7.
+ On any size board, filling an entire row, column, or diagonal wins the
+ game. With 5x5 and larger boards, a point system is used to determine
+ the winner if neither player fills an entire line. One point is given
+ for each line of 4 of a player's pieces.
+
+config UTTT_CONNECT4
+ bool
+ prompt "Install connect4"
+ help
+ Connect 4 is played on a 7x6 board. As in the original board game,
+ pieces are placed at the top of a column, and "fall" to the bottom of
+ the column. The game is won by having 4 pieces in a line (horizontal,
+ vertical, or diagonal).
+
+endif