server/src/common/attributes/attributes.c

78 lines
1.5 KiB
C
Raw Normal View History

2001-01-25 10:37:55 +01:00
/* vi: set ts=2:
*
*
* Eressea PB(E)M host Copyright (C) 1998-2003
2001-01-25 10:37:55 +01:00
* Christian Schlittchen (corwin@amber.kn-bremen.de)
* Katja Zedel (katze@felidae.kn-bremen.de)
* Henning Peters (faroul@beyond.kn-bremen.de)
* Enno Rehling (enno@eressea-pbem.de)
* Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de)
*
* This program may not be used, modified or distributed without
* prior permission by the authors of Eressea.
*/
#include <config.h>
#include <eressea.h>
#include "attributes.h"
/* attributes includes */
#include "key.h"
2001-02-18 13:20:20 +01:00
#include "gm.h"
2001-01-25 10:37:55 +01:00
#include "targetregion.h"
#include "orcification.h"
2001-01-25 10:37:55 +01:00
#include "reduceproduction.h"
#include "follow.h"
#include "iceberg.h"
#include "hate.h"
2001-02-10 11:40:12 +01:00
#include "overrideroads.h"
#include "otherfaction.h"
#include "racename.h"
#include "raceprefix.h"
#include "synonym.h"
2002-09-29 22:36:15 +02:00
#include "at_movement.h"
#ifdef USE_UGROUPS
# include "ugroup.h"
#endif
#ifdef AT_OPTION
# include "option.h"
#endif
#include "moved.h"
2004-08-08 11:42:48 +02:00
#include "variable.h"
2001-01-25 10:37:55 +01:00
/* util includes */
#include <attrib.h>
/*
* library initialization
*/
2001-01-25 10:37:55 +01:00
void
init_attributes(void)
{
2001-02-10 11:40:12 +01:00
at_register(&at_overrideroads);
at_register(&at_raceprefix);
2001-01-25 10:37:55 +01:00
init_iceberg();
init_key();
2001-02-18 13:20:20 +01:00
init_gm();
2001-01-25 10:37:55 +01:00
init_follow();
init_targetregion();
init_orcification();
2001-01-25 10:37:55 +01:00
init_hate();
init_reduceproduction();
init_otherfaction();
init_racename();
init_synonym();
2002-09-29 22:36:15 +02:00
init_movement();
init_moved();
#ifdef AT_OPTION
init_option();
#endif
#ifdef USE_UGROUPS
init_ugroup();
#endif
2004-08-08 11:42:48 +02:00
init_variable();
2001-01-25 10:37:55 +01:00
}