diff options
| author | Simon Tatham <anakin@pobox.com> | 2005-04-23 16:35:28 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2005-04-23 16:35:28 +0000 |
| commit | 0c55b7e16f6c1c3bc0c332ebdbfff9686262804b (patch) | |
| tree | 3eba3048d2cb577ce932a2b510fad92fa90a259e /list.c | |
| parent | 134418abf77438979430f92747902a00e4473f52 (diff) | |
| download | puzzles-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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |