forked from github/server
77 lines
1.5 KiB
C
77 lines
1.5 KiB
C
/* vi: set ts=2:
|
|
*
|
|
*
|
|
* Eressea PB(E)M host Copyright (C) 1998-2003
|
|
* 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"
|
|
#include "gm.h"
|
|
#include "targetregion.h"
|
|
#include "orcification.h"
|
|
#include "reduceproduction.h"
|
|
#include "follow.h"
|
|
#include "iceberg.h"
|
|
#include "hate.h"
|
|
#include "overrideroads.h"
|
|
#include "otherfaction.h"
|
|
#include "racename.h"
|
|
#include "raceprefix.h"
|
|
#include "synonym.h"
|
|
#include "at_movement.h"
|
|
#ifdef USE_UGROUPS
|
|
# include "ugroup.h"
|
|
#endif
|
|
#ifdef AT_OPTION
|
|
# include "option.h"
|
|
#endif
|
|
#include "moved.h"
|
|
#include "variable.h"
|
|
|
|
/* util includes */
|
|
#include <attrib.h>
|
|
|
|
/*
|
|
* library initialization
|
|
*/
|
|
|
|
void
|
|
init_attributes(void)
|
|
{
|
|
at_register(&at_overrideroads);
|
|
at_register(&at_raceprefix);
|
|
|
|
init_iceberg();
|
|
init_key();
|
|
init_gm();
|
|
init_follow();
|
|
init_targetregion();
|
|
init_orcification();
|
|
init_hate();
|
|
init_reduceproduction();
|
|
init_otherfaction();
|
|
init_racename();
|
|
init_synonym();
|
|
init_movement();
|
|
|
|
init_moved();
|
|
#ifdef AT_OPTION
|
|
init_option();
|
|
#endif
|
|
#ifdef USE_UGROUPS
|
|
init_ugroup();
|
|
#endif
|
|
init_variable();
|
|
}
|