attribut registrieren

This commit is contained in:
Enno Rehling 2001-02-18 12:20:20 +00:00
parent fe788ab2e0
commit 40a5f0a742
2 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/* vi: set ts=2: /* vi: set ts=2:
* *
* $Id: attributes.c,v 1.7 2001/02/10 12:31:42 corwin Exp $ * $Id: attributes.c,v 1.8 2001/02/18 12:20:20 enno Exp $
* Eressea PB(E)M host Copyright (C) 1998-2000 * Eressea PB(E)M host Copyright (C) 1998-2000
* Christian Schlittchen (corwin@amber.kn-bremen.de) * Christian Schlittchen (corwin@amber.kn-bremen.de)
* Katja Zedel (katze@felidae.kn-bremen.de) * Katja Zedel (katze@felidae.kn-bremen.de)
@ -18,6 +18,7 @@
/* attributes includes */ /* attributes includes */
#include "key.h" #include "key.h"
#include "gm.h"
#include "targetregion.h" #include "targetregion.h"
#include "orcification.h" #include "orcification.h"
#include "reduceproduction.h" #include "reduceproduction.h"
@ -42,6 +43,8 @@ init_attributes(void)
init_iceberg(); init_iceberg();
/* at_key */ /* at_key */
init_key(); init_key();
/* at_gm */
init_gm();
/* at_follow */ /* at_follow */
init_follow(); init_follow();
/* at_targetregion */ /* at_targetregion */

View File

@ -1,6 +1,6 @@
/* vi: set ts=2: /* vi: set ts=2:
* *
* $Id: attributes.c,v 1.6 2001/02/10 11:38:29 enno Exp $ * $Id: attributes.c,v 1.7 2001/02/18 12:20:20 enno Exp $
* Eressea PB(E)M host Copyright (C) 1998-2000 * Eressea PB(E)M host Copyright (C) 1998-2000
* Christian Schlittchen (corwin@amber.kn-bremen.de) * Christian Schlittchen (corwin@amber.kn-bremen.de)
* Katja Zedel (katze@felidae.kn-bremen.de) * Katja Zedel (katze@felidae.kn-bremen.de)
@ -18,6 +18,7 @@
/* attributes includes */ /* attributes includes */
#include <attributes/key.h> #include <attributes/key.h>
#include <attributes/gm.h>
#include <attributes/orcification.h> #include <attributes/orcification.h>
#include <attributes/targetregion.h> #include <attributes/targetregion.h>
#include <attributes/reduceproduction.h> #include <attributes/reduceproduction.h>
@ -33,6 +34,8 @@ void
init_attributes(void) init_attributes(void)
{ {
at_register(&at_overrideroads); at_register(&at_overrideroads);
/* at_gm */
init_gm();
/* at_iceberg */ /* at_iceberg */
init_iceberg(); init_iceberg();
/* at_key */ /* at_key */