aboutsummaryrefslogtreecommitdiff
path: root/grid.h
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2011-02-23 20:05:42 +0000
committerSimon Tatham <anakin@pobox.com>2011-02-23 20:05:42 +0000
commit53f6e4c6cb0b342f37e75c2686c1b542212c5f3e (patch)
tree10f6072309c91afe6fd423d1a7b349fbdf5aa42b /grid.h
parent1a628aebd8893001bc3a2e9dbc3e2dc7432b08e4 (diff)
downloadpuzzles-53f6e4c6cb0b342f37e75c2686c1b542212c5f3e.zip
puzzles-53f6e4c6cb0b342f37e75c2686c1b542212c5f3e.tar.gz
puzzles-53f6e4c6cb0b342f37e75c2686c1b542212c5f3e.tar.bz2
puzzles-53f6e4c6cb0b342f37e75c2686c1b542212c5f3e.tar.xz
Patch from Chris Moore to implement an extra grid type, the 'floret'
pentagonal tiling. [originally from svn r9107]
Diffstat (limited to 'grid.h')
-rw-r--r--grid.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/grid.h b/grid.h
index 217f6da..2fbe269 100644
--- a/grid.h
+++ b/grid.h
@@ -85,6 +85,7 @@ 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);
void grid_free(grid *g);