aboutsummaryrefslogtreecommitdiff
path: root/list.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2005-04-23 16:35:28 +0000
committerSimon Tatham <anakin@pobox.com>2005-04-23 16:35:28 +0000
commit0c55b7e16f6c1c3bc0c332ebdbfff9686262804b (patch)
tree3eba3048d2cb577ce932a2b510fad92fa90a259e /list.c
parent134418abf77438979430f92747902a00e4473f52 (diff)
downloadpuzzles-0c55b7e16f6c1c3bc0c332ebdbfff9686262804b.zip
puzzles-0c55b7e16f6c1c3bc0c332ebdbfff9686262804b.tar.gz
puzzles-0c55b7e16f6c1c3bc0c332ebdbfff9686262804b.tar.bz2
puzzles-0c55b7e16f6c1c3bc0c332ebdbfff9686262804b.tar.xz
Initial checkin of `Solo', the number-placing puzzle popularised by
the Times under the name `Sudoku'. [originally from svn r5660]
Diffstat (limited to 'list.c')
-rw-r--r--list.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/list.c b/list.c
index 9438c7e..be494e8 100644
--- a/list.c
+++ b/list.c
@@ -24,6 +24,7 @@ extern const game netslide;
extern const game pattern;
extern const game rect;
extern const game sixteen;
+extern const game solo;
const game *gamelist[] = {
&cube,
@@ -33,6 +34,7 @@ const game *gamelist[] = {
&pattern,
&rect,
&sixteen,
+ &solo,
};
const int gamecount = lenof(gamelist);