Updated project files to VS2008 SP1. Removed deprecated features (and warning message...
[xiph/unicode.git] / planarity / graph_generate.h
blob5db6ac228b2e0a3d9c7cf68cf2e2b4fe0dc8bf93
1 /*
3 * gPlanarity:
4 * The geeky little puzzle game with a big noodly crunch!
5 *
6 * gPlanarity copyright (C) 2005 Monty <monty@xiph.org>
7 * Original Flash game by John Tantalo <john.tantalo@case.edu>
8 * Original game concept by Mary Radcliffe
10 * gPlanarity is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
13 * any later version.
15 * gPlanarity is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with Postfish; see the file COPYING. If not, write to the
22 * Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27 extern int generate_find_number(char *id);
28 extern int generate_get_meta(int num, graphmeta *gm);
29 extern void generate_board(graph *g,int num);
31 extern void generate_simple(graph *g, int order);
32 extern void generate_nasty(graph *g, int order);
33 extern void generate_sparse(graph *g, int order);
34 extern void generate_dense(graph *g, int order);
35 extern void generate_rogue(graph *g, int order);
36 extern void generate_embed(graph *g, int order);
37 extern void generate_crest(graph *g, int order);
40 extern void generate_data(graph *g, int order);
41 extern void generate_freeform(graph *g, int order);
42 extern void generate_shape(graph *g, int order);