/*
**  map
**
**   map manipulations functions
**
*/

/* 
**   Scott "Jerry" Lawrence
**   2000 January 23
**   j@absynth.com
*/

/*
** $Id: map.h,v 1.2 2000/02/07 22:21:02 sdlpci Exp sdlpci $
**
** $Log: map.h,v $
 * Revision 1.2  2000/02/07  22:21:02  sdlpci
 * removed the conditional structure -- it was not needed.
 *
 * Revision 1.1  2000/01/24  16:39:05  sdlpci
 * Initial revision
 *
 * Revision 1.1  2000/01/24  16:39:05  sdlpci
 * Initial revision
 *
*/


typedef struct map_of_uint
{
    int w;
    int h;
    int x; 
    int y;
    int max;
    unsigned int ** data;
    unsigned int ** trav;
} INTMAP;

INTMAP * map_read_in_file(FILE * input_file);
void map_destroy(INTMAP * m);
void map_reset_trav(INTMAP * map);
void map_dump(INTMAP * map);
