~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to plug-ins/maze/maze-algorithms.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2008-10-06 13:30:41 UTC
  • mto: This revision was merged to the branch mainline in revision 35.
  • Revision ID: james.westby@ubuntu.com-20081006133041-3panbkcanaymfsmp
Tags: upstream-2.6.0
ImportĀ upstreamĀ versionĀ 2.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This program is free software; you can redistribute it and/or modify
 
3
 * it under the terms of the GNU General Public License as published by
 
4
 * the Free Software Foundation; either version 2 of the License, or
 
5
 * (at your option) any later version.
 
6
 *
 
7
 * This program is distributed in the hope that it will be useful,
 
8
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
 * GNU General Public License for more details.
 
11
 *
 
12
 * You should have received a copy of the GNU General Public License
 
13
 * along with this program; if not, write to the Free Software
 
14
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
15
 *
 
16
 */
 
17
 
 
18
#ifndef __MAZE_ALGORITHMS_H__
 
19
#define __MAZE_ALGORITHMS_H__
 
20
 
 
21
 
 
22
void      mazegen          (gint    pos,
 
23
                            guchar *maz,
 
24
                            gint    x,
 
25
                            gint    y,
 
26
                            gint    rnd);
 
27
void      mazegen_tileable (gint    pos,
 
28
                            guchar *maz,
 
29
                            gint    x,
 
30
                            gint    y,
 
31
                            gint    rnd);
 
32
 
 
33
void      prim             (gint    pos,
 
34
                            guchar *maz,
 
35
                            guint   x,
 
36
                            guint   y);
 
37
void      prim_tileable    (guchar *maz,
 
38
                            guint   x,
 
39
                            guint   y);
 
40
 
 
41
 
 
42
#endif /* __MAZE_ALGORITHMS_H__ */