2002-03-17 09:24:52 +01:00
|
|
|
/* 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>
|
2003-07-29 11:48:03 +02:00
|
|
|
| (c) 1998 - 2003 | Henning Peters <faroul@beyond.kn-bremen.de>
|
2002-03-17 09:24:52 +01:00
|
|
|
| | 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
|
|
|
|
|
2004-02-21 17:12:29 +01:00
|
|
|
struct region_list;
|
2002-03-17 09:24:52 +01:00
|
|
|
struct newfaction;
|
|
|
|
|
|
|
|
typedef struct newfaction {
|
|
|
|
struct newfaction * next;
|
2002-04-16 09:17:36 +02:00
|
|
|
char * email;
|
|
|
|
char * password;
|
2002-03-17 09:24:52 +01:00
|
|
|
const struct locale * lang;
|
|
|
|
const struct race * race;
|
|
|
|
int bonus;
|
2002-11-02 15:10:52 +01:00
|
|
|
int subscription;
|
2002-03-17 09:24:52 +01:00
|
|
|
boolean oldregions;
|
2002-09-29 20:26:07 +02:00
|
|
|
struct alliance * allies;
|
2002-03-17 09:24:52 +01:00
|
|
|
} newfaction;
|
|
|
|
|
|
|
|
extern newfaction * newfactions;
|
|
|
|
|
2004-02-21 17:12:29 +01:00
|
|
|
extern void autoseed(struct region_list * rlist);
|
|
|
|
extern void get_island(struct region_list ** rlist);
|
2002-05-25 08:58:54 +02:00
|
|
|
extern int mkisland(int nsize);
|
2002-03-17 09:24:52 +01:00
|
|
|
|
|
|
|
#endif
|