server/src/eressea/gmtool.h

33 lines
883 B
C
Raw Normal View History

/* vi: set ts=2:
* +-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
* | | Enno Rehling <enno@eressea.de>
* | Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
* | (c) 1998 - 2006 |
* | | This program may not be used, modified or distributed
* +-------------------+ without prior permission by the authors of Eressea.
*
*/
2006-04-16 14:48:55 +02:00
#ifndef H_GMTOOL
#define H_GMTOOL
2006-04-16 14:48:55 +02:00
#ifdef __cplusplus
extern "C" {
#endif
2006-04-16 15:04:52 +02:00
struct lua_State;
struct selection;
2006-04-16 14:48:55 +02:00
extern int gmmain(int argc, char *argv[]);
extern int curses_readline(struct lua_State * L, const char * prompt);
extern void highlight_region(struct region *r, int on);
extern void select_coordinate(struct selection * selected, int x, int y, int on);
extern void run_mapper(void);
extern int force_color;
2006-04-16 14:48:55 +02:00
#ifdef __cplusplus
}
#endif
2006-04-16 14:48:55 +02:00
#endif