diff options
| author | Simon Tatham <anakin@pobox.com> | 2011-02-24 19:06:49 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2011-02-24 19:06:49 +0000 |
| commit | 7b2b742be868b4a12d08f6a9f7af3e9f2923016c (patch) | |
| tree | 3b8e5a2426e92755cc416653d62789a18a26c5af /grid.h | |
| parent | 621649491dbc36285c3cfc0cd577ab04a2cbf5dc (diff) | |
| download | puzzles-7b2b742be868b4a12d08f6a9f7af3e9f2923016c.zip puzzles-7b2b742be868b4a12d08f6a9f7af3e9f2923016c.tar.gz puzzles-7b2b742be868b4a12d08f6a9f7af3e9f2923016c.tar.bz2 puzzles-7b2b742be868b4a12d08f6a9f7af3e9f2923016c.tar.xz | |
Another patch from Chris Moore implementing two more grid types, both
involving dodecagons.
[originally from svn r9109]
Diffstat (limited to 'grid.h')
| -rw-r--r-- | grid.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -80,8 +80,10 @@ grid *grid_new_snubsquare(int width, int height); grid *grid_new_cairo(int width, int height); grid *grid_new_greathexagonal(int width, int height); grid *grid_new_octagonal(int width, int height); -grid *grid_new_floret(int width, int height); grid *grid_new_kites(int width, int height); +grid *grid_new_floret(int width, int height); +grid *grid_new_dodecagonal(int width, int height); +grid *grid_new_greatdodecagonal(int width, int height); void grid_free(grid *g); |