diff options
| author | phil <phil@NetBSD.org> | 1994-12-23 07:01:39 +0000 |
|---|---|---|
| committer | phil <phil@NetBSD.org> | 1994-12-23 07:01:39 +0000 |
| commit | 6fb31e9a17413df853cbace814e414606670206b (patch) | |
| tree | 9f5b8a955645dab09e621e7a8b8acfca78d37f43 /atc/games/Tic-Tac-Toe | |
| parent | 1877bae1eec4daedfbc30c458e2957215af00ebe (diff) | |
| download | bsdgames-darwin-6fb31e9a17413df853cbace814e414606670206b.tar.gz bsdgames-darwin-6fb31e9a17413df853cbace814e414606670206b.zip | |
adding 10 more games collected from ???? and some I wrote.
Diffstat (limited to 'atc/games/Tic-Tac-Toe')
| -rw-r--r-- | atc/games/Tic-Tac-Toe | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/atc/games/Tic-Tac-Toe b/atc/games/Tic-Tac-Toe new file mode 100644 index 00000000..bd1468aa --- /dev/null +++ b/atc/games/Tic-Tac-Toe @@ -0,0 +1,25 @@ +update = 5; +newplane = 5; +width = 30; +height = 21; + +exit: ( 10 0 x ) ( 19 0 x ) + ( 29 7 a ) ( 29 13 a ) + ( 19 20 w ) ( 10 20 w ) + ( 0 13 d ) ( 0 7 d ) ; + +beacon: ( 10 7 ) ( 19 7 ) + ( 19 13 ) ( 10 13 ) ; + +line: [ ( 10 1 ) ( 10 6 ) ] + [ ( 19 1 ) ( 19 6 ) ] + [ ( 1 7 ) ( 9 7 ) ] + [ ( 11 7 ) ( 18 7 ) ] + [ ( 20 7 ) ( 28 7 ) ] + [ ( 10 8 ) ( 10 12 ) ] + [ ( 19 8 ) ( 19 12 ) ] + [ ( 1 13 ) ( 9 13 ) ] + [ ( 11 13 ) ( 18 13 ) ] + [ ( 20 13 ) ( 28 13 ) ] + [ ( 10 14 ) ( 10 19 ) ] + [ ( 19 14 ) ( 19 19 ) ] ; |
