1 /*
2  * XMapEdit, the XPilot Map Editor.  Copyright (C) 1993 by
3  *
4  *      Aaron Averill           <averila@oes.orst.edu>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  *
20  * Modifications to XMapEdit
21  * 1996:
22  *      Robert Templeman        <mbcaprt@mphhpd.ph.man.ac.uk>
23  * 1997:
24  *      William Docter          <wad2@lehigh.edu>
25  *
26  * $Id: expose.h,v 5.2 2002/02/26 00:41:18 millerjl Exp $
27  */
28 
29 typedef struct {
30    int                   color;
31    int                   num_points;
32    float                 x[5],y[5];
33 } segment_t;
34 
35 typedef struct {
36    float                 x,y,width,height;
37    int                   start,end;
38 } arc_t;
39 
40 extern segment_t         mapicon_seg[35];
41 extern segment_t         mapicondet_seg[4];
42 extern int               mapicon_ptr[91];
43 extern char              iconmenu[36];
44 
45 
46 extern int               smlmap_x, smlmap_y, smlmap_width, smlmap_height;
47 extern float             smlmap_xscale, smlmap_yscale;
48