Peg Solitaire implementation, complete with a random board

generator. The generator is lacking in almost any kind of finesse,
but it produces puzzles which at least _I_ find plausibly puzzling.

[originally from svn r6052]
This commit is contained in:
Simon Tatham
2005-07-04 19:42:55 +00:00
parent aae029926f
commit 97e93dbfff
3 changed files with 1111 additions and 1 deletions

2
list.c
View File

@ -25,6 +25,7 @@ extern const game mines;
extern const game net;
extern const game netslide;
extern const game pattern;
extern const game pegs;
extern const game rect;
extern const game samegame;
extern const game sixteen;
@ -40,6 +41,7 @@ const game *gamelist[] = {
&net,
&netslide,
&pattern,
&pegs,
&rect,
&samegame,
&sixteen,