server/src/mapper/autoseed.h
Enno Rehling 65786fc059 - Bugfix DEFAULT
- ALLIANCES define entfernt. Noch immer nicht gleicher Code für eressea wie wdw, wegen der Amulette
2004-06-27 16:56:01 +00:00

37 lines
1 KiB
C

/* vi: set ts=2:
+-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
| | Enno Rehling <enno@eressea-pbem.de>
| Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
| (c) 1998 - 2003 | Henning Peters <faroul@beyond.kn-bremen.de>
| | Ingo Wilken <Ingo.Wilken@informatik.uni-oldenburg.de>
+-------------------+ Stefan Reich <reich@halbling.de>
This program may not be used, modified or distributed
without prior permission by the authors of Eressea.
*/
#ifndef _REGIONLIST_H
#define _REGIONLIST_H
struct region_list;
struct newfaction;
typedef struct newfaction {
struct newfaction * next;
char * email;
char * password;
const struct locale * lang;
const struct race * race;
int bonus;
int subscription;
boolean oldregions;
struct alliance * allies;
} newfaction;
extern newfaction * newfactions;
extern void autoseed(struct region_list * rlist);
extern void get_island(struct region_list ** rlist);
extern int mkisland(int nsize);
#endif