2001-01-25 10:37:55 +01:00
|
|
|
/* vi: set ts=2:
|
|
|
|
*
|
2001-02-04 09:42:36 +01:00
|
|
|
* $Id: attributes.c,v 1.5 2001/02/04 08:38:14 enno Exp $
|
2001-01-25 10:37:55 +01:00
|
|
|
* Eressea PB(E)M host Copyright (C) 1998-2000
|
|
|
|
* 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>
|
2001-02-03 14:45:35 +01:00
|
|
|
#include <attributes/attributes.h>
|
2001-01-25 10:37:55 +01:00
|
|
|
|
|
|
|
/* attributes includes */
|
2001-01-26 17:19:41 +01:00
|
|
|
#include <attributes/key.h>
|
2001-02-02 09:40:49 +01:00
|
|
|
#include <attributes/orcification.h>
|
2001-01-26 17:19:41 +01:00
|
|
|
#include <attributes/targetregion.h>
|
|
|
|
#include <attributes/reduceproduction.h>
|
|
|
|
#include <attributes/follow.h>
|
|
|
|
#include <attributes/iceberg.h>
|
|
|
|
#include <attributes/hate.h>
|
2001-01-25 10:37:55 +01:00
|
|
|
|
|
|
|
/* util includes */
|
|
|
|
#include <attrib.h>
|
2001-02-04 09:42:36 +01:00
|
|
|
extern attrib_type at_roads_override;
|
2001-01-25 10:37:55 +01:00
|
|
|
void
|
|
|
|
init_attributes(void)
|
|
|
|
{
|
2001-02-04 09:42:36 +01:00
|
|
|
at_register(&at_roads_override);
|
2001-01-25 10:37:55 +01:00
|
|
|
/* at_iceberg */
|
|
|
|
init_iceberg();
|
|
|
|
/* at_key */
|
|
|
|
init_key();
|
2001-02-02 09:40:49 +01:00
|
|
|
/* at_orcification */
|
|
|
|
init_orcification();
|
2001-01-25 10:37:55 +01:00
|
|
|
/* at_follow */
|
|
|
|
init_follow();
|
|
|
|
/* at_targetregion */
|
|
|
|
init_targetregion();
|
|
|
|
/* at_hate */
|
|
|
|
init_hate();
|
|
|
|
/* at_reduceproduction */
|
|
|
|
init_reduceproduction();
|
|
|
|
}
|